body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    
    justify-content: center;
    align-items: center;
    height: 170vh;
}
.header{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content:space-around;
    background-color: white;
    width: 100%;
    height: 90px;
    margin: 0 auto;
    padding: 20;
}

.logo{
    margin-left: 50px;
    width: 100px;
    height: 100px;
}

.login {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 13% 30% 0 30%;
}

.login h1 {
    margin-bottom: 20px;
    color: #000088;
}

.login form {
    margin-bottom: 20px;
}

.login form label {
    display: block;
    margin-bottom: 5px;
    color: #000088;
    font-weight: bold;
    text-align: left;
}
.sexo,
.login form input[type="text"],
.login form input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.login form input[type="submit"] {
    width: calc(100% - 20px);
    padding: 12px;
    background-color: #000088;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login form input[type="submit"]:hover {
    background-color: #0056b3;
}

.login a {
    color: #000088;
    text-decoration: none;
    font-size: 14px;
}

.login a:hover {
    text-decoration: underline;
}
/*Cadastro*/



.form-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    margin: 10% 30% 0 30%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container h1 {
    margin-bottom: 20px;
    color: #000088;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.form-container form label {
    display: block;
    margin-bottom: 5px;
    color: #000088;
    font-weight: bold;
    text-align: left;
    width: 100%;
    max-width: 300px;
}
.form-container form input[type="date"],
.form-container form input[type="Password"],
.form-container form input[type="text"]{
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-container form input[type="submit"] {
    width: calc(100% - 20px);
    padding: 12px;
    background-color: #000088;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container form input[type="submit"]:hover {
    background-color: #0056b3;
}

.form-container button {
    background: none;
    border: none;
    margin-top: 10px;
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.form-container button:hover {
    text-decoration: none;
}

.error-message {
    color: #dc3545;
    margin-top: 5px;
    font-size: 14px;
    text-align: left;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.password-strength-meter {
    width: calc(100% - 20px);
    height: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #ced4da;
    position: relative;
}

.password-strength-meter-bar {
    height: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s;
}

.weak {
    background-color: #ff4d4d; /* Vermelho */
}

.medium {
    background-color: #ffa64d; /* Laranja */
}

.strong {
    background-color: #66cc66; /* Verde */
}