
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

body {
  background: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 30px 0;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 650px;
}

#signupForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}

#signupForm button,
#signupForm #message {
  grid-column: 1 / -1;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0056d2;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

input:focus,
select:focus {
  outline: none;
  border-color: #0056d2;
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.15);
}

#signupForm select {
  grid-column: 1 / -1;
}

button {
  width: 100%;
  padding: 12px;
  background: #0056d2;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #0041a8;
}

#message {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* Login / Signup link text */
.login-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-text a {
  color: #0056d2;
  text-decoration: none;
  font-weight: bold;
}

.login-text a:hover {
  text-decoration: underline;
}

/* Password eye icon */
.toggle-password {
  position: absolute;
  right: 10px;
  top: 30px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

@media (max-width: 600px) {
  #signupForm {
    grid-template-columns: 1fr;
  }

  .container {
    width: 95%;
    padding: 20px;
  }
}



/* Heading font — Poppins for visual hierarchy against Inter body text */
h1, h2, h3, .logo, .brand, .gate-box h2 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}
