
/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #42373f;
}

/* Center the signup container */
.signup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

}

/* Signup Box Styling */
.signup-box {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  
}

.signup-box h2 {
  margin: 0 0 20px;
  color: #42373f;
  text-align: center;
}

/* Input Field Styling */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
  width: 90%;
  padding: 10px;
  border: 1px solid #46555b;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #42373f;
  
}

input:focus {
  border-color: #869979;
  outline: none;
}

/* Radio Button Section */
.radio-group {
  margin-bottom: 20px;
}

.radio-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.radio-group input[type="radio"] {
  margin-right: 10px;
}

.radio-option {
  margin-bottom: 10px;
}

/* Button Styling */
.btn {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #869979;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #46555b;
}

/* Card Details Section */
.card-details {
  margin-top: 20px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #46555b;
}

.card-details label {
  font-weight: bold;
}

/* Expiry Date and CVV in one line */
.expiry-cvv {
  display: flex;
  gap: 20px;
}

.expiry-cvv .form-group {
  flex: 1; /* Equal width for both fields */
}

.footer {
  text-align: center;
  margin-top: 15px;
}

.footer a {
  color: #a74930;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}