/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global Styles for auth pages */
  .auth-page {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f3e7fe, #c3a6ff);
  }
  
  /* Auth Container */
  .auth-page .auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
  }
  
  /* Card */
  .auth-page .card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .auth-page .title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .auth-page .description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  /* Form */
  .auth-page form {
    display: flex;
    flex-direction: column;
  }
  
  .auth-page label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
  }
  
  .auth-page input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  
  .auth-page .btn {
    background-color: #6200ea;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
  }
  
  .auth-page .btn:hover {
    background-color: #4b00c8;
  }
  
  .auth-page .link {
    font-size: 14px;
    margin-top: 10px;
  }
  
  .auth-page .link a {
    color: #6200ea;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .auth-page .link a:hover {
    color: #4b00c8;
  }
  