/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #ff69b4, #fff, #000);
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
  }
  
  /* FORM CONTAINER */
  .auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease;
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* HEADINGS */
  .auth-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
  }
  .auth-subtitle {
    color: #555;
    margin-bottom: 30px;
  }
  
  /* FORM FIELDS */
  form label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: 600;
  }
  form input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    transition: border-color 0.3s;
  }
  form input:focus {
    border-color: #ff69b4;
    outline: none;
  }
  
  /* BUTTON */
  .auth-button {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .auth-button:hover {
    background-color: #ff69b4;
    color: #000;
  }
  
  /* LINKS */
  .helper-links {
    margin-top: 20px;
    font-size: 14px;
  }
  .helper-links a {
    color: #ff69b4;
    text-decoration: none;
  }
  .helper-links a:hover {
    text-decoration: underline;
  }
  
  /* LOGO OR AVATAR */
  .logo-container img {
    width: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid #ff69b4;
  }
  
  /* MESSAGES */
  .messages {
    margin-bottom: 15px;
  }
  .message {
    padding: 8px;
    border-radius: 5px;
    margin: 4px 0;
  }
  .message.error {
    background-color: #ffdddd;
    color: #900;
  }
  .message.success {
    background-color: #ddffdd;
    color: #090;
  }
  