body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color:lavender;
	back
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

form {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

form h2 {
    font-size: 28px;
    font-weight: 600;
    color: #004080;
    text-align: center;
    margin-bottom: 20px;
}

form p {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

form input[type="text"], form input[type="password"] {
    width: 90%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

form textarea,
form select {
    width: 90%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #0073e6;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.2);
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #005bb5;
}

form .form-footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

form .form-footer a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

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

/* Styling the label for alignment */
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between radio button and label text */
  font-size: 14px;
  color: #333; /* Dark text color for a professional look */
  margin-bottom: 10px; /* Spacing between options */
  cursor: pointer; /* Adds a pointer cursor for better UX */
}

/* Styling the radio button */
.radio-label input[type="radio"] {
  appearance: none; /* Hides the default radio button */
  width: 14px; /* Reduced size */
  height: 14px;
  border: 2px solid #555; /* Custom border for the radio */
  border-radius: 50%; /* Makes it circular */
  outline: none;
  cursor: pointer;
  transition: 0.2s all ease; /* Smooth hover and active effects */
}

/* State when the radio button is checked */
.radio-label input[type="radio"]:checked {
  background-color: #007BFF; /* Fills with a blue color */
  border-color: #007BFF; /* Matches the border with the fill */
}

/* Hover effect */
.radio-label input[type="radio"]:hover {
  border-color: #0056b3; /* Darker border on hover */
}