
  .page-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .container {
    position: relative;
    text-align: center;
  }
  
  .card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease-in-out;
  }
  
  .card-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c2c2c;
  }
  
  .card-header p {
    color: #555;
    font-size: 15px;
  }

  .alert-danger{
    background-color: #f6c0b6;
  }
  
  .mascot img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .input-group {
    position: relative;
    margin-top: 20px;
    width: 100%;
  }
  
  .input-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #aaa;
    pointer-events: none;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px; /* left padding for icon */
    border: 1px solid #ddd;
    /* border-radius: 12px; */
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
  }
  
  .input-group input:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 2px #e0d5ff;
  }
  
  .fancy-button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    /* border-radius: 12px; */
    font-weight: 600;
    /* background: linear-gradient(to right, #a78bfa, #fb923c); */
    background: black;

    color: white;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .fancy-button:hover {
    transform: scale(1.03);
  }
  
  .fancy-button:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
  }
  
  
  .footer-link {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
  }
  
  .footer-link a {
    color: #ff826b;
    text-decoration: none;
  }
  
  .footer-link a:hover {
    text-decoration: underline;
  }
  
  .tip-box {
    background: #fff7ed;
    border: 1px solid #fde68a;
    padding: 16px;
    border-radius: 12px;
    color: #c2410c;
    font-size: 14px;
    margin: 20px 0;
  }

  .password-group {
    position: relative;
  }

  .password-group .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    font-size: 1rem;
    z-index: 2;
  }

  .password-group input {
    padding-right: 40px; /* space for eye icon */
  }
  
  .bottom-note {
    font-size: 12px;
    margin-top: 24px;
    color: #bbb;
  }
  
  .back-button {
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    text-align: left;
    padding: 0;
    margin: 0 0 20px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .back-button:hover {
    color: #333;
  }
  
  
  .actions button {
    margin-top: 10px;
  }
  
  .actions .gradient {
    background: linear-gradient(to right, #a78bfa, #fb923c);
    color: white;
  }
  
  .spinner {
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .hidden {
    display: none;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  