/* General page styling */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5fff8; /* light pastel green */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-top: 10px;
}

/* Main container */
.signup-container {
    display: flex;
    background-color: #eaf8ef; /* softer green background for form box */
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

/* Left image section */
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 80%;
    height: auto;
    border-radius: 50% 50% 50% 50%; /* rounded image */
    object-fit: cover;
}

/* Right form section */
.form-section {
    flex: 1;
    padding-left: 40px;
}

.form-section h1 {
    font-size: 2rem;
    color: #375e42;
    margin-bottom: 5px;
}

.form-section p {
    font-size: 0.9rem;
    color: #375e42;
}

/* Radio button container */
.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 10px 0;
}

/* Hide default radio */
.radio-group input[type="radio"] {
  display: none;
}

/* Custom circle */
.radio-group label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

/* Outer circle */
.radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid #2e5739;
  border-radius: 50%;
  background: white;
}

/* Inner circle when selected */
.radio-group input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #2e5739;
  border-radius: 50%;
}


/* Input fields */
input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d6e6d9;
    border-radius: 5px;
    background-color: white;
    font-size: 0.95rem;
}

/* Two fields in one row */
.form-row {
    display: flex;
    gap: 10px;
}

.form-row select {
    flex: 1;
}

/* Submit button */
button {
    width: 100%;
    padding: 12px;
    background-color: #375e42;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #2a4632;
}

/* Sign in link */
.signin-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.signin-text a {
    color: #2a4632;
    text-decoration: none;
    font-weight: 500;
}

.signin-text a:hover {
    text-decoration: underline;
}
