@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,500;1,14..32,500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background-image: url("../CAPA\ MEMORIAL\ -\ WALLPAPER.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header {
    background-color: #1d2328;
    height: 80px;
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #bf9e6c;
    justify-content: end;
}


nav ul {
    display: flex;
    list-style: none; 
    align-items: center; 
    height: 100%; 
    margin-right: 40px;
    gap: 20px;
}

nav li a{
    display: inline-block;
    text-decoration: none;
    color: #bf9e6c;
    transition: .3s ease;
    border-radius: 5px;
    border: none;
    padding: 8px 12px;
    font-weight: 500;
    
}

nav li a:hover {
    text-decoration: none;
    color: #1d2328;
    background-color: #bf9e6c;
    transform: scale(1.09);
    transition: .3s ease;
}

#campo_formulario {
    width: 40%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-top: 8%;
    margin-left: 30%;
}


#campo_formulario label{
    color: #bf9e6c;
}

#campo_formulario #formulario{
    width: 80%;
    margin: 5% 10% 0 10%;
    justify-items: center;
}

#campo_formulario .titulo{
    width:auto;
    color: #bf9e6c;
    margin-bottom: 4%
}

.login-botao{
    display: flex;
    justify-content: center;
}

.login-botao button{
    margin-top: 15%;
    border: none;
    background-color: #bf9e6c;
    padding: 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    height: 40px;
    width: 90px;
    font-weight: 600;
    color: #1d2328;
    transition: .3s ease;
}

.login-botao button:hover {
    background-color: #d4b483;
    transform: scale(1.05);
}


.input-box{
    display: flex;
    flex-direction: column;
    padding: 3%;
    width: 100%;
}

.input-box input{
    margin: 5px 0;
    padding: 12px;
    height: 50px;
    font-size: 20px;
    color: #000000;
    border: none;
    border-radius: 8px;
    box-shadow: 1px 1px 6px #0000001c;
    background-color: #ffffff;
    border: 1px solid #444f57;
}

.input-box input:focus {
    outline: 2px solid #bf9e6c;
}

.input-box input::placeholder{
    color: #4b4b4b;
}

.campo-input {
    width: 80%;
}

h1 {
  text-decoration: underline 3px solid #d4b483;
  text-underline-offset: 8px;
  color: #bf9e6c;
}

.btn-voltar{
    margin-top: 8%;
    text-align: center;
}

.btn-voltar a{
    text-decoration: none;
    color: #bf9e6c;
    font-weight: 500;
    transition: .3s ease;
}

.btn-voltar a:hover{
    color: #e8d0b3;
    text-decoration: underline;
}


.show-password{
    margin: 10px 0 0 12%;
    border: none;
    background-color: #bf9e6c;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    height: 40px;
    width: auto;
    font-weight: 600;
    color: #1d2328;
    transition: .3s ease;
}

#icone{
    padding-right: 5px;
    font-size: 15px;
}

.show-password:hover{
    background-color: #d4b483;
    transform: scale(1.05);
}



@media (max-width: 768px) {

    body {
        height: auto;
        min-height: 100vh;
    }

    header {
        height: auto;
        padding: 10px 0;
    }

    nav ul {
        margin-right: 0;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li a {
        padding: 6px 10px;
        font-size: 14px;
    }

    #campo_formulario {
        width: 90%;
        margin-top: 15%;
        margin-left: 5%;
    }

    #campo_formulario #formulario {
        width: 100%;
        margin: 5% 0 0 0;
    }

    .campo-input {
        width: 100%;
    }

    .input-box {
        padding: 2%;
    }

    .input-box input {
        height: 45px;
        font-size: 16px;
    }

    .login-botao button {
        margin-top: 10%;
        height: 40px;
        width: 100px;
    }

    .show-password {
        margin: 10px 0 0 0;
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 22px;
        text-align: center;
    }

    .btn-voltar {
        margin-top: 10%;
    }
}
