/* Reset & font */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Baloo 2', cursive;
    background: linear-gradient(to bottom right, #f5fff4, #e0fbe2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Auth container */
  .auth-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  .auth-container h1 {
    margin-bottom: 24px;
    font-size: 28px;
    color: #000000;
  }
  
  /* Form inputs */
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .auth-form input {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  .auth-form input:focus {
    border-color: #22BB0E;
    outline: none;
  }
  
  /* Button */
  .auth-form button {
    background-color: #22BB0E;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .auth-form button:hover {
    background-color: #1ba00b;
  }
  
  /* Redirect link */
  .auth-form p {
    font-size: 14px;
    margin-top: 12px;
  }
  
  .auth-form a {
    color: #22BB0E;
    text-decoration: none;
    font-weight: 600;
  }
  
  .auth-form a:hover {
    text-decoration: underline;
  }
  