/* Estilo minimalista e agradável */
.form-inline-clean .form-control {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ced4da;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-inline-clean .form-control:focus {
  border-color: #0b1542;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

.btn-demo {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: #0b1542;
  border: none;
  color: #fff;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
  
}
.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13,110,253,.3);
  background-color: #0b1542;
  color: #fff;
}

/*Tabelas demo responsivo.*/
/* Caixa com bordas arredondadas e sombra suave */


 .tabela-container {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      overflow: hidden;
 
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
     width: 100%;
      background-color: #fff;
    }
    .tabela-container thead th {
      background-color: #f1f3f5; /* fundo cinza claro */
      font-weight: 600;
      border-bottom: 1px solid #dee2e6;
    }
    .tabela-container td, 
    .tabela-container th {
      vertical-align: middle;
      padding: 0.75rem 1rem;
    }
    .tabela-container tbody tr + tr td {
      border-top: 1px solid #e9ecef;
    }

/*Formulario*/

.form-section {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .section-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #0b1542;
      border-left: 4px solid #0b1542;
      padding-left: 0.5rem;
    }
    .form-icon-group {
      position: relative;
      margin-bottom: 1.2rem;
    }
    .form-icon-group i {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #0b1542;
      font-size: 1rem;
    }
    .form-icon-group input,
    .form-icon-group select {
      padding-left: 2.2rem;
      border-radius: 8px;
    }
    /* Radios bonitos */
    .radio-group .form-check {
      background: #f1f3f5;
      border-radius: 8px;
      padding: .5rem 1rem;
      margin-bottom: .5rem;
      transition: background .2s;
    }
    .radio-group .form-check:hover {
      background: #e9ecef;
    }
    .radio-group .form-check-input:checked + .form-check-label {
      font-weight: 600;
      color: #0b1542;
    }
    .btn-submit {
      background: #0b1542;
      color: #fff;
      border-radius: 8px;
      padding: .6rem 2rem;
    }
    .btn-submit:hover {
      background: #122070;
      color: #fff;
    }

/*Login*/

 .login-card {
      background: #fff;
      border-radius: 14px;
      padding: 2.5rem;
      width: 100%;
      max-width: 420px;
      margin: auto;
      animation: fadeIn 0.8s ease-in-out;
      margin-top: 25px;
    }
    .login-title {
      text-align: center;
      font-weight: 700;
      color: #0b1542;
      margin-bottom: 1.5rem;
    }
    .form-icon-group {
      position: relative;
      margin-bottom: 1.2rem;
    }
    .form-icon-group i {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: #0b1542;
      font-size: 1rem;
    }
    .form-icon-group input {
      padding-left: 2.4rem;
      border-radius: 10px;
      height: 48px;
    }
    .btn-login {
      background: #0b1542;
      color: #fff;
      border-radius: 10px;
      width: 100%;
      height: 48px;
      font-weight: 600;
      transition: background .3s;
    }
    .btn-login:hover {
      background: #1c2670;
    }
    .reset-link {
      display: block;
      text-align: right;
      margin-top: .5rem;
      color: #0b1542;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .reset-link:hover {
      text-decoration: underline;
    }
    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-15px);}
      to   {opacity: 1; transform: translateY(0);}
    }

    .imagem-login{
      width: 160px;
      height: 160px;
      overflow: hidden;
      margin: auto;
      margin-bottom: 25px;
    }
    .imagem-login img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    @media screen and (max-width:768px) {
        .form-icon-group i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #0b1542;
        font-size: 1rem;
        }
    }


