@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset some default styles */
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", serif;
    background-color: #fffffb;
}

header {
    display: flex;
    justify-content: center;
}

header img {
    width: 300px;
    padding-top: 25px;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fffffb;
    padding-top: 60px;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px; /* Add padding to the card */
    background-color: #005937;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensure padding doesn't overflow */
}

.main_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form_label {
    font-weight: bold;
    font-size: 16px;
    color: #fffffb;
}

input[type="text"],
input[type="email"] {
    width: 100%; /* Ensure input fields take full width */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #005937;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box; /* Include padding in width calculation */
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: black;
}

button {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #005937;
    background-color: #fffffb;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

h1 {
    color: white;
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}

.message {
    color: white;
    text-align: center;
}

.white {
    color: white !important;
}

.back-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background-color: white;
    color: #00303c;
    border-radius: 5px;
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .container {
        padding: 14px;
        margin: 20px;
    }

    input[type="text"],
    input[type="email"],
    button {
        font-size: 14px;
    }
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 22px;
    height: 22px;
    border: 2px solid #fffffb; /* matches form bg / inputs */
    border-radius: 4px; /* keep it square */
    background-color: transparent;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: all 0.2s ease;
}

.radio-group input[type="radio"]:hover {
    border-color: #cd222b; /* optional accent: soft gold on hover */
}

.radio-group input[type="radio"]:checked {
    background-color: #fffffb; /* filled with cream/white */
    border-color: #fffffb;
}

.radio-group input[type="radio"]:checked::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #005937; /* your brand green inside */
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 2px;
}

.radio-group label.form_label {
    margin: 0;
}

/* .radio-group label {
    margin-left: 0.25rem;
    color: white;  */
/* label text matches form text */
/* font-weight: 500;
    cursor: pointer;
} */

.email {
    user-select: text;
    color: inherit; /* or pick a consistent color */
    text-decoration: underline;
}
