* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b1020;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.signup-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.subtext {
  color: #555;
  margin-bottom: 8px;
}

.company-line {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

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

.input-group label {
  font-size: 14px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.input-group select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background: #fff;
}

.signup-submit {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #4caf50;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.signup-submit:hover {
  background-color: #45a049;
}

.cancel-button {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #bbb;
  background-color: #f3f3f3;
  color: #333;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.cancel-button:hover {
  background-color: #e7e7e7;
}

.message {
  margin-top: 12px;
  font-size: 14px;
  min-height: 18px;
}

.message.error {
  color: #b00020;
}

.message.success {
  color: #0a7f35;
}

.login-link {
  margin-top: 14px;
}

.login-link a {
  color: #0d6efd;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .signup-container {
    padding: 20px;
    width: 90%;
  }
}
