html {
    font-size: 62.5%;
}
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
  
:root {
    --cor-primaria: black;
    --cor-secundaria: #ffca02;
    --cor-terciaria: white;
  
    --font-large: 3.2rem;
    --font-sec: 2rem;
    --font-medium: 1.6rem;
    --font-small: 1.2rem;
}
  
.scroll {
    /* Estilização da barra de rolagem */
    scrollbar-color: var(--cor-terciaria) transparent;
    /* Cor da thumb e do track */
    scrollbar-width: thin;
    /* Largura da barra de rolagem (pode ser thin, auto, ou none) */
  
    /* Estilização específica para WebKit (Chrome, Safari, Opera) */
    &::-webkit-scrollbar {
        width: 10px;
        /* Largura da barra de rolagem */
    }
  
    &::-webkit-scrollbar-thumb {
        background-color: var(--cor-secundaria);
        /* Cor da thumb */
    }
  
    &::-webkit-scrollbar-track {
        background-color: transparent;
        /* Cor do track */
    }
} 

body {
    height: 100dvh;
    width: 100%;
  
    overflow-y: hidden;
  
    background-image: url(plataform/images/background-login.png);
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center; 
} 

/* body::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.400);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
} */

.logo img {
    width: 8.4rem;
    height: 7.2rem;
}

header {
    padding: 3.2rem;

    /* background-color: rgb(0, 0, 0, 0.6); */

    position: relative;
    z-index: 9999;
}

.login-body {
    z-index: 90;
    position: relative;

    max-width: 450px;
    max-height: 72.5dvh;
    padding: 3.2rem;
    
    margin-left: 50%;

    background-color: rgb(0, 0, 0, 0.8);
    border-radius: 1.6rem;

    overflow-y: scroll;

    transform: translateX(-50%);
}

.login-body .cadastro-concluido { 
    display: flex;
    flex-direction: column;
    align-items: center;  

    img {
        width: 36rem;
        height: 36rem;
    }

    .text {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .dados {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: start;
    }
    
    h1, h2 {
        font-size: var(--font-sec);
        color: var(--cor-terciaria);
    }

    p {
        font-size: var(--font-medium);
        color: var(--cor-terciaria);
    }
}

.no-scroll {
    overflow-y: hidden;
    margin-top: 3.2rem;
}

.login-body h2 {
    font-size: var(--font-large);
    color: var(--cor-terciaria);
}

.login-body input {
    width: 100%;
    height: 4.8rem;

    color: var(--cor-terciaria);
    background-color: #ffffff0c;
    border: 0.1rem solid var(--cor-terciaria);
    border-radius: 3.2rem;
    padding-left: 1.6rem;

    transition: ease all 0.5s;
}

.login-body input:hover {
    background-color: #00000011;
}

.login-body button {
    height: 50px;
    width: 100%;
    color: #fff;
    background-color: var(--cor-secundaria);
    border-radius: 3px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    margin-bottom: 10px;
}

.login-body button:hover {
    background-color: #e9b600;
    cursor: pointer;
}

.login-body .login-box {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;

    form {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;

        button {
            border-radius: 3.2rem;
        }
    }
}

.content-erros p, .error-php, .correct-php {
    font-size: var(--font-medium);
    font-weight: 500;
  
    color: red;
}
  
p.correct-php {
    color: green;
}

@media ( max-width: 760px ) {
    body, header {
        background-color: black; 
        background-image: none;
    }
    
    .login-body {
        min-width: 100%;
        min-height: 100dvh;

        border-radius: 0;

        .login-box {
            width: 100%;
            height: 100%;
        }
    }

    .no-scroll {
        margin-top: 0;
    }
}