/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  /* Signup Box */
  .signup-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 350px;
    text-align: center;
  }
  
  .signup-container h2 {
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Input Fields */
  .input-group {
    text-align: left;
    margin-bottom: 15px;
  }
  
  .input-group label {
    font-size: 14px;
    color: #333;
  }
  
  .input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
  }
  
  .input-group input:focus {
    border-color: #2575fc;
    box-shadow: 0 0 5px rgba(37,117,252,0.5);
  }
  
  /* Button */
  button {
    width: 100%;
    padding: 12px;
    background: #2575fc;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background: #1a5edc;
  }
  
  /* Login Link */
  .login-link {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .login-link a {
    color: #2575fc;
    text-decoration: none;
  }
  
  .login-link a:hover {
    text-decoration: underline;
  }
  