.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #121212;
    padding: 20px;
  }
  
  .login-card {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 400px;
    color: #f0f0f0;
    text-align: center;
  }
  
  .login-card h2 {
    color: #ff7400;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  
  .subtitulo {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .input-group {
    margin-bottom: 18px;
    text-align: left;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 6px;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .input-field {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background-color: #333;
    color: #f0f0f0;
    font-size: 1rem;
  }
  
  .btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #ff7400;
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn-submit:hover {
    background-color: #ff8c1a;
  }
  
  .separador-ou {
    margin: 25px 0 20px;
    position: relative;
    text-align: center;
  }
  
  .separador-ou span {
    background-color: #1e1e1e;
    padding: 0 12px;
    color: #aaa;
    font-size: 0.95rem;
  }
  
  .separador-ou::before,
  .separador-ou::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #444;
  }
  
  .separador-ou::before {
    left: 0;
  }
  
  .separador-ou::after {
    right: 0;
  }
  
  .esqueci-senha {
    text-align: right;
    margin: -10px 0 15px;
  }
  
  .esqueci-senha a {
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
  }
  
  .esqueci-senha a:hover {
    text-decoration: underline;
    color: #ff7400;
  }
  
/* Ajusta o botão do Google para ter o mesmo tamanho do botão de login */
.g_id_signin {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .g_id_signin > div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 1rem !important;
    height: 45px !important;
  }
  
  
  .cadastro-texto {
    margin-top: 25px;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.4;
  }
  
  .cadastro-texto a {
    color: #ff7400;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .cadastro-texto a:hover {
    color: #ffaa33;
    text-decoration: underline;
  }
  
  /* ======================
     Responsividade Extra
  ====================== */
  @media (max-width: 480px) {
    .login-card {
      padding: 30px 20px;
    }
  
    .login-card h2 {
      font-size: 1.6rem;
    }
  
    .subtitulo {
      font-size: 0.95rem;
    }
  
    .btn-submit {
      font-size: 1rem;
    }
  
    .cadastro-texto {
      font-size: 0.95rem;
    }
  
    .input-field {
      font-size: 0.95rem;
    }
  }
  