/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
  body {
    font-family: "Inter";
    margin: 0;
    background: #FFF;
  }

  a {
    text-decoration: none;
    transition: 0.3s;
  }

  a:hover {
    text-decoration: none;
  }

  main {
    height: 100vh;
  }


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #000;
    transition: all 0.6s ease-out;
  }

  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: #6228E1 transparent #6228E1 transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }

  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

/*--------------------------------------------------------------
# BOTÕES
--------------------------------------------------------------*/
  .btn-laranja {
    border-radius: 150px;
    border: 1px solid #FBD5BE;
    background: rgba(251, 213, 190, 0.00);
    color: #E94E1B;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.5s;
    cursor: pointer;
    padding: 10px 20px;
  }

  .btn-laranja:hover,
  .btn-laranja:active,
  .btn-laranja:focus:hover {
    color: #E94E1B;
    border: 1px solid #FBD5BE;
    background: #FBD5BE;
  }

  .btn-azul {
    border-radius: 150px;
    border: 1px solid #2D2E83;
    background: #2D2E83;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    transition: all 0.5s;
    cursor: pointer;
    padding: 10px 20px;
  }

  .btn-azul:hover,
  .btn-azul:active,
  .btn-azul:focus:hover {
    color: #FFF;
    border: 1px solid #15153D;
    background: #15153D;
  }
  
  .btn-azul-outline {
    border-radius: 150px;
    border: 1px solid #AEA8D2;
    background: transparent;
    color: #2D2E83;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.5s;
    cursor: pointer;
    padding: 10px 20px;
  }

  .btn-azul-outline:hover,
  .btn-azul-outline:active,
  .btn-azul-outline:focus:hover {
    color: #2D2E83;
    border: 1px solid #2D2E83;
    background: rgba(174, 168, 210, 0.40);
  }

  .btn-center {
    max-width: 70%;
    display: block;
    margin: 10px auto;
    text-align: center;
  }

  .btn-branco {
    color: #2D2E83;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    transition: all 0.3s;
    border: unset;
    background: transparent;
  }

  .btn-branco:hover,
  .btn-branco:active,
  .btn-branco:focus {
    text-decoration: underline;
    opacity: 0.5;
  }

/*--------------------------------------------------------------
# DEFAULT
--------------------------------------------------------------*/
  .sidebar {
    width: 30%;
    height: 100%;
    background-image: url(../img/Login-Bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px;
    position: fixed;
  }

  .sidebar .logo img {
    max-width: 170px;
    width: 100%;
  }

  .sidebar h3 {
    color: #FFF;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
  }

  .content {
    width: 70%;
    min-height: 100%;
    height: -webkit-fill-available;
    padding: 60px;
    margin-left: 30%;
  }

  .content h2 {
    color: #05050F;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
  }

  .content hr {
    width: 70%;
    margin: 30px auto;
    border-top: 1px solid #DFDCED;
    opacity: 1;
  }

  .content p {
    color: rgba(5, 5, 15, 0.60);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
  }

  .content p.criar-conta {
    color: #05050F;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin: 0;
  }

  .criar-conta .btn-branco {
    font-size: 12px;
  }

  @media (max-width: 768px) {
    .sidebar { display: none !important; }

    .content {
      width: 100%;
      margin: 0;
      padding: 20px;
      min-height: auto;
      height: auto;
    }
  }

/*--------------------------------------------------------------
# FORMULÁRIOS
--------------------------------------------------------------*/
  .formulario label {
    color: #05050F;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
  }

  .formulario select,
  .formulario input {
    border-radius: 10px;
    border: 1px solid #AEA8D2;
    background: #FFF;
    display: block;
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
  }

  .formulario input[disabled] {
    background: rgba(174, 168, 210, 0.38);
  }

  .formulario .btn-login {
    border-radius: 10px;
    display: block;
    width: 100%;
    padding: 15px;
  }

  .resposta {
    color: #6159A0 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-align: left !important;
  }



/*--------------------------------------------------------------
# RECUPERAR/NOVA SENHA
--------------------------------------------------------------*/
  .box-senha {
    border-radius: 15px;
    background: #EBE9F5; 
    padding: 40px 60px;
    margin: 30px 0;
  }

  .box-senha h4 {
    color: #05050F;
    font-size: 22px;
    font-weight: 600;
  }
  
  .box-senha p {
    color: #2D3183;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }

  @media (max-width: 768px) {
    .box-senha {
      padding: 25px 15px;
      margin: 20px 0;
    }
  }


/*--------------------------------------------------------------
# RESPONSIVO
--------------------------------------------------------------*/
.mobile { display: none !important; }

@media (max-width: 1200px) {

}


/* --- LOADER BTN ---- */
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
  position: relative;
  opacity: .8;
  color: transparent !important;
  text-shadow: none !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  box-shadow: none;
}

.m-progress:before {
  content: '';  
  display: inline-block;   
  position: absolute;
  background: transparent;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;    
  box-sizing: border-box;   
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;    
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}



/*estilo do olhinho da senha no login do titula*/

  .pass-wrap{
  position: relative;
}

.pass-wrap input{
  padding-right: 44px; /* espaço pro ícone não ficar em cima do texto */
}

.pass-wrap .toggle-pass{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  color: #1b1b1b; /* opcional */
}

.pass-wrap .toggle-pass:focus{
  outline: none;
  box-shadow: none;
}

.pass-wrap .toggle-pass i{
  font-size: 18px;
}

/*--------------------------------------------------------------
# RESPONSIVO
--------------------------------------------------------------*/
.mobile { display: none !important; }

@media (max-width: 992px) {
  .mobile { display: block !important; }
  .desktop { display: none !important; }

  .header {
    border-bottom: 1px solid #EBE9F5;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    padding: 15px;
  }

  .logo-mobile img {
    display: block;
    margin: 0 auto;
    max-height: 60px;
  }
}