@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Roboto+Slab:wght@100..900&family=Tagesschrift&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Orbitron';
  }

  body {
    background-color: #121212;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
  }

  .logo {
    max-width: 130px;
    align-self: center;
  }

  .signup-form {
      display: flex;
      flex-direction: column;
    background-color: #1e1e1e;
    padding: 10px 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
  }

  .signup-form h2 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
  }

  .input-group {
    margin-bottom: 15px;
  }

  .input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #2a2a2a;
    color: white;
  }

  .input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #2a2a2a;
    color: white;
    appearance: none; /* Removes default dropdown arrow */
  }

  .input-group select {
    cursor: pointer;
  }

  .input-group select:focus, .input-group input:focus {
    outline: 2px solid #00ffcc;
  }

  /* Custom arrow for the dropdown */
  .input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
  }
  
  .input-group input::placeholder {
    color: #aaa;
  }

  .signup-button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }

  .signup-button:hover {
    background: #dddddd;
  }

  .login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .login-link a {
    color: #ffffff;
    text-decoration: underline;
  }

  @media (max-width: 480px) {
    .signup-form {
      padding: 25px 20px;
    }

    .logo {
      max-width: 120px;
      margin-bottom: 20px;
    }
  }