
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000;
    color: #faf7e5;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .signup-container {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 20px #ef3e7a88;
  }
  
  .signup-container h1 {
    color: #ef3e7a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .highlight {
    color: #ffe600;
  }
  
  form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
  }
  
  form input:focus {
    outline: 2px solid #7ee5f5;
  }
  
  form button {
    background-color: #ef3e7a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  form button:hover {
    transform: scale(1.05);
    background-color: #fa5d96;
  }
  
  .login-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #d2f27a;
  }
  
  .login-msg a {
    color: #7ee5f5;
    text-decoration: none;
  }
  