@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Noto Sans', san-serif;
}

body *{
    box-sizing: border-box;
}


.header{
    width: 100vw;
    height: 10vh;
    display: grid;
    grid-template-columns: 40% 60%;      
}

.left-header {
    display: flex;
    align-items: center;
}
.left-header-logo {
    margin: 0%;
    padding-left: 15px;
    color: #005BB5;
}

.right-header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.right-header-loginbutton {
    font-size: 11px;
    padding: 10px 15px;
    margin: 10px;
}
.right-header-link {
    text-transform: uppercase;
    color: #1976D2;
    letter-spacing: 2px;
    font-weight: 520;
    padding: 0 15px 0 15px;
}  
.header > a {
    text-decoration: none;
}
button {
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #FFFFFF;
    background:#1976D2;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
}


.main-login
{
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login{
    width: 50vw;
    height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.left-login > h1 {
    color:#005BB5;
}

.right-login{
    width: 50vw;
    height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-login-image{
    width: 25vw;
}
.card-login{
    width:60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #FFFFFF;
    border-radius:20px;
    box-shadow: 0px 10px 40px #00000056;
}

.card-login > h1{
    color:#005BB5;
    font-weight: 800;
    margin: 0;
    font-size: 3vw;
}
.textfield{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin: 10px 0px;
    width:100%;
}

.textfield > input{
    width:100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #D2D2D2;
    color: #000000;
    font-size: 12pt;
    box-shadow: 0px 10px 25px #80797956;
    outline: none;
    box-sizing: border-box;
}

.textfield > label {
    margin-bottom: 2px;
    color:#000000;
    
}
.textfield > input::placeholder{
    color:#696868;
}
.loginbutton{
    width: 100%;
    padding: 16px 0px;
    margin: 25px 0;
    border:none;
    border-radius: 8px;
    outline:none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #FFFFFF;
    background:#1976D2;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
}

.link-cadastro{
    color: #000000;


}


.toggle-visualizacao {
    display: flex; /* Para alinhar lado a lado */
    align-items: center; /* Centraliza verticalmente */
    margin-top: 10px; /* Adiciona um pouco de espaço acima */
}

.toggle-visualizacao input[type="checkbox"] {
  margin-right: 5px; /* Espaço entre a checkbox e o texto */
}


@media only screen and (max-width:950px) {
    .card-login  { width: 85%; }
}

@media only screen and (max-width:600px) {

    .header{
        height: 20vh;
    }
    .main-login{
        height: 80vh;
    }

    .left-header{
        align-items: start;
        margin-top: 20px;
    }
    .right-header{
        margin-top: 20px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .card-login {
        width: 90%;
    }
    .main-login{
        flex-direction: column;
    }
    .left-login > h1{
        display:none;
    }
    .left-login{
        width:100%;
        height: auto;
    }
    .rigth-login{
        width:100%;
        height: auto;
    }
    .left-login-image{
        width: 25vh;
    }
}
