
input {
  padding: 10px 12px 10px 36px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
  box-sizing: border-box;
}



/* Ajusta botões e caixas */


/* Melhora responsividade */
@media (max-width: 600px) {
  input {
    font-size: 13px;
    padding: 10px 10px 10px 34px;
  }
}
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #2563eb, #1e3a8a);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: #333;
      overflow-y: auto;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      background: #fff;
      display: flex;
      flex-wrap: wrap;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
      position: relative;
      height: 95vh;
      min-height: 600px;
      margin: 20px 0px;
    }

    .progress-bar {
      width: 100%;
      background: #e3f2fd;
      height: 8px;
      position: absolute;
      top: 0;
      left: 0;
    }

    .progress-bar div {
      height: 100%;
      width: 33%;
      background: #1976d2;
      transition: width 0.5s;
    }

    .form-section {
      flex: 1;
      max-width: 350px;
      min-width: 300px;
      padding: 20px 50px;
      display: flex;
      flex-direction: column;
      margin: auto 0px;
      justify-content: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 5px;
    }

    .logo img {
      width: 45px;
      height: 45px;
    }

    .logo h2 {
      font-size: 30px;
      color: #0d47a1;
      font-weight: 700;
      margin: 0px;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #1976d2;
    }


    input:focus {
      border-color: #1976d2;
      box-shadow: 0 0 6px rgba(25,118,210,0.4);
      outline: none;
    }

    small.error {
      color: red;
      font-size: 12px;
      margin-top: 3px;
      display: block;
      position: absolute;
      top: -18px;
    }

    .password-info {
      font-size: 13px;
      color: #666;
      margin-top: 5px;
    }

    .password-strength {
      height: 6px;
      border-radius: 5px;
      margin-top: 5px;
      background: #ddd;
      overflow: hidden;
    }

    .password-strength div {
      height: 100%;
      width: 0;
      transition: width 0.3s;
    }


    button {
      width: 100%;
      background: #1976d2;
      color: white;
      padding: 14px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 15px;
    }

    button:hover {
      background: #0d47a1;
    }

    .loader {
      border: 4px solid #f3f3f3;
      border-top: 4px solid #1976d2;
      border-radius: 50%;
      width: 22px;
      height: 22px;
      animation: spin 1s linear infinite;
      display: none;
      margin: 10px auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .links {
      text-align: center;
      font-size: 13px;
      margin-top: 12px;
    }

    .links a {
      color: #1976d2;
      text-decoration: none;
    }

    .links a:hover {
      text-decoration: underline;
    }

    .banner-section {
      flex: 1;
      background: #e3f2fd;
      position: relative;
      overflow: hidden;
    }

    .slide {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: #fff;
      max-width: 700px;
      padding: 25px;
      border-radius: 10px;
      overflow-y: auto;
      max-height: 80vh;
    }

    .modal-content h3 {
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .modal-content h4 {
      margin-top: 15px;
      color: #1976d2;
    }

    .modal-close {
      float: right;
      cursor: pointer;
      color: #1976d2;
      font-weight: bold;
    }

    @media (max-width: 460px) {
      .container { flex-direction: column; }
      .banner-section { display: none; }
      .form-section { padding: 40px 25px; min-width: auto !important;}
    }
    
    @media (max-width: 640px) {

      .TituloBanner{
        display: none;
      }
      
    }
/* Corrige barra de senha para igualar aos inputs */
.password-strength {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  margin-top: 5px;
  background: #ddd;
  overflow: hidden;
  box-sizing: border-box;
}

/* Inputs ocupam 100% dentro da div */
.form-group input {
  width: 100%;
  box-sizing: border-box;
}

/* Corrige alinhamento do ícone dentro do campo de senha */
.form-group.password-group i {
  top: 22%;
  transform: translateY(-50%);
}

/* Corrige alinhamento do checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  font-size: 14px;
}

.checkbox input[type="checkbox"] {
  margin: auto 3px;
}

.checkbox label {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

/* Garante que o link dentro do label não quebre layout */
.checkbox a {
  color: #1976d2;
  text-decoration: none;
}
.checkbox a:hover {
  text-decoration: underline;
}

.Cabecario{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Cabecario h{
  font-weight: bold;
}

.TituloBanner{
  position: absolute;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  text-align: center;
  width: 90%;
  bottom: 50px;
  border-radius: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  padding: 12px 5px;
  font-weight: bold;
  cursor: pointer;
}

.TituloBanner a{
  color: #fff;
  text-decoration: none;
}

.TituloBanner:hover{
  transform: translateX(-50%) scale(1.05);
}

.loadPag {
    flex-direction: column;
    position: fixed;
    padding-top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 243, 243, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 1s ease, visibility 0s linear 1s, pointer-events 0s linear 1s;
    font-size: 20px;
    font-weight: bold;
    gap: 10px;
}

.img-Load {
    width: 15vw;
}

  .modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: #fff;
    color: #000;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: zoomIn 0.3s ease;
  }

  .modal-content h2 {
    margin-top: 0;
    font-size: 20px;
    color: #111827;
  }

  .modal-content p {
    font-size: 15px;
    color: #374151;
    margin: 10px 0 25px;
  }

  .modal-actions {
    display: flex;
    justify-content: space-around;
  }

  .modal-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    width:auto !important;
    margin-top: 0px !important;
    font-size: 14px !important;
  }

  #btnRecuperar {
    background: #2563eb;
    color: #fff;
  }

  #btnRecuperar:hover {
    background: #1e40af;
  }

  #btnFechar {
    background: #e5e7eb;
    color: #111827;
  }

  #btnFechar:hover {
    background: #d1d5db;
  }

  @keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .modal-icon {
    font-size: 45px;
    color: #2563eb;
    margin-bottom: 10px;
}
.Cadastre_se{
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 6px;
    cursor: pointer;
}


.Cadastre_se:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;

}
