/* Cole depois do Bootstrap */

/* Centraliza e dá um fundo melhor */
html, body { height: 100%; }
body{
  min-height:100vh;
  padding-bottom: 34px;
  display:grid;
  place-items:center;
  background: whitesmoke;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.app-footer{
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1040;
  height: 34px;
  width: 100vw;
  max-height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-size: .85rem;
  line-height: 1;
  padding: 0 10px;
  background: #CED5D9;
  color: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(255,255,255,.16);
}
.app-footer a{
  color: #000000;
  text-decoration: none;
}
.app-footer a:hover{
  color: #000000;
}

/* Ajusta o container do bootstrap */
.row{
  width: 100%;
  margin: 0 !important;
  padding: 0 16px;
}

/* Card do login */
.login_section{
  width: min(520px, 92vw);
  padding: 34px 34px 28px;
  border-radius: 20px;
  background:#CED5D9;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
}

/* Logo */
.login_section img{
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* Título */
.login_section h1{
  margin: 12px 0 18px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .2px;
  color: #000000;
}

/* Erro */
.login_section p{
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgb(255, 77, 77);
  border: 1px solid rgb(255, 77, 77);
  color: rgba(0, 0, 0, 0.92);
}

/* Labels */
.login_section .form-label{
  color: rgba(0, 0, 0, 0.78);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  margin: 10px 0 6px;
}

/* Inputs */
.login_section .form-control{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.login_section .form-control:focus{
  border-color: rgba(45,140,255,.75);
  box-shadow:
    0 0 0 4px rgba(45,140,255,.18),
    0 16px 34px rgba(0,0,0,.22);
}

/* Botão */
.login_section .btn{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  border: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #7F00F5, #1449A9) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  transition: transform .08s ease, filter .2s ease, box-shadow .2s ease;
}

.login_section .btn:hover{
  filter: brightness(1.05);
  box-shadow: 0 18px 38px rgba(0,0,0,.33);
}

.login_section .btn:active{
  transform: translateY(1px);
}

/* Responsivo */
@media (max-width: 520px){
  .login_section{ padding: 26px 18px 18px; }
  .login_section h1{ font-size: 28px; }
}
