/* PALETAS DE CORES */
/*
    Rocho #8046fb
    Azul bebe #ebe3f5
    Branco #fff
*/

body {
    background-image: url("imagens/");
}

/* Preloader carregamento de pagina */
/* Preloader CSS */
.preloader {
    display: none; /* Oculto inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.preloader .spinner {
    border: 10px solid #ebe3f5;
    border-top: 10px solid #5B2A86;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Fim Preloader carregamento de pagina */
/* //////////////////////////////// */
/* //////////////////////////////// */
/* //////////////////////////////// */
/* //////////////////////////////// */
a {
    text-decoration: none;
}
/* a:hover{text-decoration: none;} */

/* Geral / Auth */
.contentAuth {
    display: flex;
    justify-content: center;   /* Centraliza horizontalmente */
    align-items: center;       /* Centraliza verticalmente */
    flex-direction: column;    /* Organiza os filhos na vertical */
    height: 100vh; /* Altura total da tela */
}

.contentAuth .card-auth {
    background-color: transparent;
    border-radius: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 4rem;
}

.contentAuth #card-auth2 {
    color: #fff;
    border: none;
   justify-content: center;   /* Centraliza horizontalmente */
    align-items: center;       /* Centraliza verticalmente */
    flex-direction: column;    /* Organiza os filhos na vertical */
    padding: 8rem 0;
    /* background-color: #5b2a86ac; */
    background: linear-gradient(
        rgba(12, 73, 81, 0.7),
        rgba(91, 42, 134, 0.954)
    ),
    url("../imagens/modelo-tablet-nas-maos.png") no-repeat center center;

     background-color: #FFFFFF;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

.contentAuth #card-auth1 {
    /* background-color: #8046fb; */
    /* background-color: hsl(); */
    background-color: #5B2A86;
}

/* Inputs */
.contentAuth .inputAuth {
    width: 100%;
    color: #fff;
    padding: 10px 0;
    padding: 10px 10px;
    /* font-size: 16px; */
    border: none;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    transition: 0.3s;
}

.contentAuth input::placeholder {
    color: #ebe3f5;
    font-weight: bold;
    transition: 0.3s;
}

.contentAuth input:focus {
    border-bottom: 1.8px solid #ebe3f5;
    transition: 0.3s;
}

/* btn */
.contentAuth .btnAuth {
    font-weight: bold;
    background-color: #ebe3f5;
    color: #5B2A86;
    border-radius: 50px;
    transition: 0.3s;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    /* background: linear-gradient(135deg, #8046fb, #ebe3f5); */
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid transparent;
}

.btnAuth:hover {
    background-color: #5B2A86;
    transition: 0.3s;
    color: #fff;
    border: 1px solid #fff;
}

/* Login */

.auth-box {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.auth-box .logo {
    color: #001e27;
}



@media (max-height: 700px) {
  .contentAuth #card-auth1 {
    min-height: 100vh;
    
  }
}

