/* form.css - Specifically for the Registration Page */

/* 1. Page Background */
body {
    background-color: #f8f9fa;
    /* Light clean grey */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* 2. The White Box (Container) */
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    /* Keeps form from getting too wide */
    margin: 20px;
}

/* 3. Heading Style (Matches your ekclass.css h2) */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 30px;

}h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 30px;
}


/* 4. The Magic Fix: Vertical Stacking */
.input-group {
    margin-bottom: 20px;
}

/* This forces the label to be on top */
label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

/* 5. Styling the Boxes (Inputs) */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    /* Makes box full width of container */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    /* Crucial for padding to work */
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #2c3e50;
    /* Match your heading color */
}

/* 6. The Button (Matches your .btn style in ekclass) */
button {
    width: 100%;
    padding: 15px;
    background-color: rgb(97, 78, 64);
    /* Your primary brown */
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2c3e50;
    /* Changes to dark blue on hover */
}

/* 7. Success/Error Message */
#responseMessage {
    margin-top: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}
/* Styling for Checkbox Groups */
.checkbox-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.check-label {
    display: flex !important; /* Overrides the block label from before */
    align-items: center;
    font-weight: 400 !important;
    font-size: 0.9rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.check-label input {
    width: auto !important; /* Prevents checkbox from stretching to 100% */
    margin-right: 10px;
}

/* Inline layout for Voice/Text/Email section */
.checkbox-group.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group.inline .check-label {
    margin-bottom: 0;
}

/* Styling for Checkbox Groups */
.checkbox-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.check-label {
    display: flex !important;
    /* Overrides the block label from before */
    align-items: center;
    font-weight: 400 !important;
    font-size: 0.9rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.check-label input {
    width: auto !important;
    /* Prevents checkbox from stretching to 100% */
    margin-right: 10px;
}

/* Inline layout for Voice/Text/Email section */
.checkbox-group.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group.inline .check-label {
    margin-bottom: 0;
} 