/* auth.css */

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: #f4f6f8;
  }
  
  section {
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
  }
  
  h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.6rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .signing-input {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 1rem;
    width: 100%;
    transition: border 0.2s ease;
    padding: 10px;
  }
  
  .signing-input:focus {
    border-color: #007BFF;
    outline: none;
  }


  
 
  #google-login {
    background-color: #ffffff;
    color: #444;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
  }
  
  #google-login::before {
    content: '';
    background: url('/static/images/google-logo.svg') no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  
  #forgot-password-link {
    font-size: 0.9rem;
    display: inline-block;
  }
  
  hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
  }
  
  /* Toast container */
  .toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
  }
  
  .toast {
    background: #333;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  