/* Reset & box model */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Global */
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  }
  
  /* Centering container */
  .login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    padding: 20px;
  }
  
  .login-container {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  
  /* Logo */
  .logo {
    max-height: 80px;
    margin-bottom: 20px;
  }
  
  /* Title */
  h2 {
    color: #3d499c;
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  /* Inputs */
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f8f9ff;
  }
  
  /* Styled button */
  button {
    background-color: #3d499c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #2e3b7a;
  }
  
  /* Error */
  .error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
  }
  
  /* Link */
  a {
    font-size: 14px;
    color: #3d499c;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  .separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0 20px;
  }
  
  .separator::before,
  .separator::after {
    content: '';
    flex: 1;
    border-top: 1px solid #ccc;
  }
  
  .separator span {
    margin: 0 12px;
    color: #777;
    font-size: 0.9em;
  }
  
  .google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: white;
    color: #444;
    border: 1px solid #ccc;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
  }
  
  .google-button:hover {
    background-color: #f7f7f7;
  }
  
  .google-icon {
    width: 20px;
    height: 20px;
  }
  
  .note {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .subtitle {
    margin-bottom: 12px;
    color: #444;
    font-size: 1em;
    text-align: center;
  }
