.login-container {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    padding: 25px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-form {
    background: rgba(255, 253, 253, 0.9);
    max-width: 700px;
    width: 95%;
    min-height: 400px;
    padding: 30px 0px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px 0px;
}

.container-form .form-titulo {
    font-size: 35px;
    width: 90%;
    color: var(--cor-verde01);
    text-align: center;
}

.campo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85%;
    gap: 25px 0px;
}

.campo > p {
    display: flex;
    flex-direction: column;
    gap: 10px 0px;
    align-items: center;
    width: 100%;
}

.campo > p > label {
    width: 100%;
    font-size: 18px; 
    font-weight: bold;
    color: var(--cor-verde02 );
}

.campo > p > input {
    width: 100%;
    border: 3px solid var(--cor-verde02);
    height: 45px;
    border-radius: 5px;
    outline: none;
    text-indent: 15px;
    color: var(--cor-verde02);
    font-weight: 500;
    font-size: 14px;
}

.campo > p > input::placeholder {
    color: var(--cor-verde02);
    font-weight: 500;
    font-size: 14px;
}

.link-esquecer-senha {
    color: var(--cor-verde02);
    font-size: 18px;
    font-weight: bold;
    width: 85%;
}

.link-esquecer-senha:hover {
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}

.botao-login {
    cursor: pointer;
    background-color: var(--cor-verde02);
    max-width: 180px; 
    width: 95%;
    height: 65px ;
    border: none;
    border-radius: 50px; 
    font-size: 22px ; 
    font-weight: bold;
    color: var(--cor-branco);
}

.botao-login:hover {
    opacity: 0.8;
    transition: 0.3s ease-in-out;
}

.errorlist  {
    color: var(--cor-verde02);
    list-style: none;
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
    display: none;
}

.campos-error {
    color: var(--cor-span-vermelho);
    list-style: none;
    width: 100%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
}

@media(max-width: 580px) {
    .container-form .form-titulo {
        font-size: 30px;
    }
}

@media(max-width: 420px) {
    .link-esquecer-senha {
        font-size: 16px;
    }


    .botao-login {
        max-width: 150px; 
        height: 55px ; 
        font-size: 18px;
    }
}


