body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  
  .login-modal {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    width: 400px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
  }
  
  .title {
    text-align: center;
    color: #3a2b5c;
    margin-bottom: 20px;
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .login-btn {
    background-color: #a084e8;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .login-btn:hover {
    background-color: #7c5cd7;
  }
  
  .form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .form-links a {
    font-size: 13px;
    color: #5a5a5a;
    text-decoration: none;
  }
  
  .form-links a:hover {
    text-decoration: underline;
  }
  