* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root {

/*PERFIL DE CORES */
  --blue: #00268f ;
  --red: #cc2938;
  --chumbo: #3e4457;
  --cinza: #6e778c;
  --prata: #bcc4d1;
  --gelo: #e9edf0;
  --branco: #ffffff;

}


@font-face {
  font-family: 'QanelasSoft';
  src: url('fonts/QanelasSoftMedium.woff') format('woff'),
       url('fonts/QanelasSoftSemiBold.woff') format('woff');
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.box-load {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 80px;
    background-image: url('../img/logo-pre.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 8px;
    z-index: 1000;
    transition: all 0.5s ease;
}

.pre {
    position: absolute;
    top: 0;
    left: -100px;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 250, 255, 0) 0%, 
        rgba(0, 250, 255, 0.9) 50%, 
        rgba(0, 250, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: lightPass 1.5s ease-in-out infinite;
    filter: blur(20px);
    opacity: 0.8;
}

@keyframes lightPass {
    0% {
        left: -100px;
        opacity: 0.1;
    }
    20% {
        opacity: 0.9;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        left: calc(100% + 100px);
        opacity: 0.1;
    }
}

/* Estilos para o container principal */
.container {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    left: 350px;
    width: 100%;
    height: 250px;
}

/* Estilos para o rodapé */
.logo-rodape {
    position: absolute;
    bottom: 100px;
    left: 150px;
    transition: all 0.5s ease;
    display: none;
}

.logo-rodape img {
    width: 130px;
    height: auto;
}



.logo-escola{
    display: none;
}

   .logo-secundary{
        display: block;
        text-align: center;
    }





/* Estilos para o formulário de login */
.form-login {
    padding-bottom: 50px;
    border-radius: 80px;
    position: relative;
    background: var(--branco);
    max-width: 850px !important;
    width: 100%;

}

.input-login{
    border-radius: 20px;
    padding: 20px 12px !important;
    border-color: var(--gelo);
}

.input-login:focus{
    box-shadow: 0 0 0 0;
    border-color: var(--blue);
    outline: 0;
} 

.form-group label{
    font-family: "QanelasSoftMedium" sans-serif;
    font-weight: 200;
    color: var(--chumbo);
    font-size: 18px;
}


.panel {
    border-radius: 20px;
    max-width: 350px;
    width: 100%;
    margin: 30px auto 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: none;
}

.panel-heading {
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
    background: white;
    border: none;
    padding: 20px;
}

    .panel-heading h4 {
       font-size: 30px;
       font-family: 'QanelasSoftMedium', sans-serif;
       font-weight: 200;
       color: var(--chumbo);
       text-align: left;

    }


    .panel-default > .panel-heading{
        background: var(--branco) !important;

    }

/* Estilos para o wrapper do botão */
.btn-wrapper {
    position: relative;
    max-width: 230px;
    margin: 0 auto;
    display: block;
}

/* Estilos para o botão */
.btn-login {
    position: relative;
    border-radius: 80px;
    width: 100%;
    border: none;
    background-color: var(--red); !important;
    padding: 12px 20px 12px 40px; /* Aumentei o padding à esquerda */
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(242, 17, 17, 0.3);
    color: var(--branco);
    cursor: pointer;
    text-align: center;
    z-index: 1;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(242, 17, 17, 0.4);
    color: var(--branco);
}

/* Estilos para o ícone */
.icon-entrar {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none; /* Permite clicar no botão através do ícone */
    transition: all 0.3s ease;
}

.icon-entrar img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
}

/* Efeito de hover no ícone */
.btn-login:hover ~ .icon-entrar img {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 0.7; }
}

.vertical-offset-100 {
    padding-top: 100px;
}

.recuperar {
    margin-top: 25px;
    font-size: 14px;
    text-align: center;
}


.recuperar .text-rec{
    font-size: 14px;
    font-weight: 300;
    color: var(--blue);
    font-family: 'QanelasSoftMedium' sans-serif;
}



/* MEDIA QUERIES PARA RESPONSIVIDADE */

@media only screen and (max-width: 700px) {
    .box-load {
        width: 180px;
        height: 45px;
    }
    
    .panel {
        max-width: 300px;
    }

    .logo-escola{

        width: 50px;
        height: auto;
    }

    .logo-rodape{
        display: block;
    }
    

    .logo-rodape img{
        margin-bottom: 30px;
    }

    .container{
        position: absolute;
        left: 0;
        width: 100%;
    }


    .logo-secundary{
        display: none;
    }



}

@media only screen and (max-width: 480px) {
    .box-load {
        width: 160px;
        height: 40px;
    }
    
    
    .panel-heading h4 {
       font-size: 28px;
       font-family: 'QanelasSoft', sans-serif;
       font-weight: 600;
       color: var(--chumbo);
       text-align: left;

    }
    
    
    .logo-rodape {
        bottom: 30px;
    }


     .logo-escola{
        display: block;
        position: absolute;
        width: 200px;
        height: auto;
        margin: 0 auto;
        z-index: 100;
        top: -192px;
        left: 100px;
    }

    .logo-escola img{
        width: 100%;
    }


    .form-login {
    position: relative;
    padding: 5px 0;
    margin-top: 150px !important;
    max-width: 350px !important;

        }

}