/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans:wght@700&display=swap');

/* Definições gerais do body */
body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    box-sizing: border-box;
    background: #201b2c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Layout principal */
.main-login {
    width: 100vw;
    height: 100vh;
    background:rgb(8, 39, 105);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lado esquerdo do login */
.left-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login img {
    width: 600px;
}

.left-login > h1 {
    font-size: 3vw;
}

/* Lado direito do login */
.right-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cartão de login */
.card-login {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 35px;
    background: #2f2841;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
}


/* Campos de preenchimento */
.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.textfield > input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.textfield > label {
    color: #f0ffffde;
    margin-bottom: 10px;
}

.textfield > input::placeholder {
    color: #f0ffffde;
}


/* Estilos para labels */
label {
    color: #fff;
    font-weight: bold;
}

/* Estilos para inputs */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

/* Estilos para textarea */
textarea {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

/* Estilo para os títulos das seções */
h2, h4 {
    color: #77ffc0;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Outros estilos */

/* Regra de mídia para telas de até 600px */
@media only screen and (max-width: 1000px) {
    /* Estilos para telas menores */
    .card-login {
        width: 80%;
    }
    .main-login {
        flex-direction: column;
    }
    .left-login,
    .right-login {
        width: 100%;
        height: auto;
    }
    .left-login img {
        width: 600px;
        margin: -55px;
    }
    input[type="text"],
    input[type="date"],
    input[type="time"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
        width: 100%;
        font-size: 30px;
    }

    .textfield > label {
        font-size: 30px;
    }
    
    .textfield > input::placeholder {
        font-size: 30px;
    }

    form {
        width: 100%;
        font-size: 35px;
    }
}
/* Fechamento da regra @media */