@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-spinner9 {
    color: #f0f0f0;
    animation: spin 1s linear infinite;
}

h2{
    font-weight: 400;
    color: #FFFFFF;
}

h4{
    font-weight: 400;
    color: #FFFFFF;
}
h6{
    font-weight: 500;
    color: #FFFFFF;
}

label{
    color:#FFFFFF;

}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #384CA8;*/
    background-image: linear-gradient(to bottom left, #DCFF5F, #C7E94F);
    background-size: 150% 150%;
    animation: gradientAnimation 10s ease infinite;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.container {
    width: 100%;
    height: 100vh;
    display: flex;
}

.form-image {
    flex: 1;                
    display: flex;         
    align-items: center;
    justify-content: center;
}

/* A própria imagem */
.form-image img {
    width: 2000%;        /* ocupa toda a largura */
    height: 100%;       /* ocupa toda a altura */
    object-fit: fill;
}

.form-header{
    margin-top: -20px;
    padding-top: 50px;
    align-self: flex-start;
}

.form-header img{
    width: 150px;
}

.form-content-header{
    width: 25rem;
    text-align: justify;
}

.form{
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #0f0f0f;
    border-top-left-radius: 40px;
    box-shadow: -8px 0 10px -6px rgba(0,0,0,0.5);
    padding: 1rem;
}

.input-group{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

.input-box{
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

.input-box input{
    margin: 0.6rem 0;
    padding: 0.8rem  1.2rem;
    border: 1px solid rgba(50,50,50,0.5);
    width: 100%;
    border-radius: 2px;
}

.input-box input:focus-visible{
    outline: 1px solid #006eff;
}

.input-box input::placeholder{
    font-size: 11px;
}

.form-buttons{
    display: flex;
    justify-content: space-between;
}

.form-buttons button{
    width: 50%;
    border: none;
    padding: 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
}


.form-buttons a{
    text-decoration: none;
}

.form-buttons .login-button {
    background-color: #DCFF5F;
    color: #0F0F0F;
    font-weight: 600;
}

.form-buttons .login-button:hover{
    background-color: #C7E94F;
    color: #0F0F0F;
    transition: 0.3s
}

.form-buttons .forgot-password-button{
    background-color: #0F0F0F;
    color: #FFFFFF;
}

.form-footer{
    font-size: 10px;
}

.midle-item{
    margin: 10px; 
    max-height: 75vh; 
    overflow-y: auto; 
    width: 40vw !important;
    justify-content: center;
}

@media screen and (max-width: 900px) {
    .form-image{
        display: none;
    }    

    .form{
        width: 100%;
        border-top-left-radius: 0px;
    }

    .form-content{
        width: 80%;
    }

    .input-box input, .form-content-header{
        width: 100%;
    }

    .midle-item{
        width: 80vw !important;
    }

}

table{
    width: 100%;
    border-collapse:separate; 
    border-spacing: 0 1em;
    padding: 10px;
}
table td {
    margin-bottom: 10px !important;
    padding: 10px;
    color: rgb(0, 0, 0) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    max-height: 100px;
    min-height: 100px;
}

a {
    color:#DCFF5F;
    text-decoration: none;
}



.perfis a{
    color:#f0f0f0;
    font-size: small;
    text-decoration:none;
}

.perfil-icon{
    color:#DCFF5F;
}

.perfis a:hover .perfil-box{
    transform:translateY(-2px);
    box-shadow:rgba(0,0,0,.35) 0 6px 12px;
    transition:all .15s;
}


.text-muted {
    color: #A8A8A8;
    font-size: .8em;
}

.table-master{
    width: 100%;
    height: 80vh;
    overflow-y: auto;
}

.table-master:-webkit-scrollbar {
    width: 1px; /* Largura do scroll */
  }

.alert0{
    padding: 10px;
    background-color: #CFF4FC;
    border-radius: 2.5px;
    margin: 20px;
    width: 70%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.alert1{
    padding: 10px;
    background-color: #FF0000;
    border-radius: 2.5px;
    margin: 20px;
    width: 70%;
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.div_browser{
    width: 100% !important;
    margin-top: 10px !important;
    text-align: center !important;
}

.form-error {
    color: red;
}

.view-button{
    height: 45px !important;
    width: 19% !important;
    cursor: pointer;
    background-color: #DCFF5F;
    border: 1px solid #C7E94F;
    color: #0f0f0f;
    border-radius: 2.5px;
}

.view-button:hover{
    background-color: #C7E94F;
    color: #0f0f0f;
    transition: 0.3s
}

.passview{
    width: 100%;
}

.passview input{
    width: 79%;
}

 
/* NATAL */

.snow {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    z-index: 999999999999999;
}

.snow span{
    width: 5px;
    height: 5px;
    background-color: snow;
    border-radius: 50%;
    box-shadow: -100px 20px 5px snow, -100px 20px 10px snow;
    margin: 0 1vw;
    animation: animeteSnow calc(75s / var(--i)) linear infinite;
}

@keyframes animeteSnow{
    0% {
        transform: translateY(-10vh);
    }
    100%{
        transform: translateY(110vh)
    }
}

.gorro {
    position: absolute;
    top: 38%;
    left: 21%;
}

.gorro img {
    width: 60px;
}

.natal{
    color: red;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    font-family: 'Lobster';
}

.sso-button {
    position: relative;
    bottom: 15px;
    border: none;
    background-color: #0F0F0F;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    padding: 1rem;
    background-color: #DCFF5F;
    color: #0f0f0f;
    font-weight: 600;
    width: 50%;
}

.sso-button:hover{
    background-color: #C7E94F;
    color: #0f0f0f;
    transition: 0.3s
}


.passview{
    display:flex;              /* input + botão lado a lado          */
    align-items:center;
    position:relative;         /* referencia para o "esqueceu"       */
}

.passview input{
    flex:1 1 auto;             /* input preenche o espaço            */
}

.forgot-password-button{
    position:absolute;         /* usa .passview como referência      */
    top:100%;                  /* imediatamente abaixo do input      */
    right:0;                   /* alinhado com o olhinho             */
    margin-top:-2px;            /* pequena distância                   */
    background:none;
    border:0;
    color:#C7E94F;             /* cor de link, mude se necessário    */
    font-size:10px;
    cursor:pointer;
}

.form-buttons button {
width: 100%;
}

.form-footer{
    text-align:center;      /* centraliza texto e inline-elements */
}

/* opcional – deixa a logo certinha no centro também */
.form-footer img{
     width: 75%;
    display:block;          /* quebra a linha sozinho            */
    margin:0 auto 0.5rem;   /* centra e dá um espacinho abaixo    */
}


