/* promoter_form.css */

/* Apply border-box globally */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}


body {
    background-color: #f9f9f9; /* Light grey background */
    color: #333; /* Dark grey text */
    font-family: 'Work Sans', sans-serif; /* Using Work Sans as a default font */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.promoter-form-container {
    background-color: #fff; /* White container background */
    padding: 40px;
    border: 1px solid #e5e5e5; /* Light border */
    width: 80%;
    max-width: 700px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.promoter-form-container h2 {
    color: #29363e; /* Dark blue title */
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Josefin Sans', sans-serif; /* Using Josefin Sans for title */
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #49545b; /* Slightly darker grey label */
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdbdbd; /* Grey border for inputs */
    border-radius: 0; /* Sharp corners */
    font-size: 16px;
    font-family: 'Arimo', sans-serif; /* Using Arimo for input text */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing of textarea */
}

.form-group select {
    appearance: none; /* Remove default arrow in some browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
    padding-right: 30px;
}


.radio-group {
    display: flex; /* Use flexbox to align radio buttons and labels */
    align-items: center; /* Vertically align items in the flex container */
    gap: 20px; /* Space between radio button groups */
    margin-top: 5px; /* Add some top margin to the radio group */
}

.radio-group label {
    display: inline-block; /* Display labels inline with radio buttons */
    margin-left: 5px; /* Space between radio button and label */
    font-weight: normal; /* Reset label font-weight if needed */
}

.radio-group input[type="radio"] {
    vertical-align: middle; /* Align radio buttons nicely with text */
}


.checkbox-group {
    padding: 5px 0; /* Add a little padding around checkboxes */
}

.checkbox-group label {
    display: inline-block; /* Display labels inline with checkboxes */
    margin-left: 5px; /* Add some spacing between checkbox and label */
    font-weight: normal; /* Reset label font-weight if needed */
}

.checkbox-group input[type="checkbox"] {
    vertical-align: middle; /* Align checkboxes nicely with text */
    margin-right: 3px;
}


.terms-group {
    margin-top: 30px; /* Add some space before terms checkbox */
    text-align: center; /* Center align terms checkbox and label */
}

.terms-group label {
    display: inline-block; /* Make label inline to center properly */
    font-weight: normal; /* Reset font weight */
    color: #777; /* Slightly lighter text for terms */
}

.terms-group a {
    color: #feca16; /* Yellow color for terms link */
    text-decoration: none; /* Remove underline from link */
}

.terms-group a:hover {
    text-decoration: underline; /* Add underline on hover */
}


.submit-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #feca16;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #29363e; /* Dark blue on hover */
}