/* s_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;
}

.sponsorship-form-container {
    background-color: #fff; /* White container background */
    padding: 40px;
    border: 1px solid #e5e5e5; /* Light border */
    width: 100%;
    margin: auto;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.sponsorship-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;
}

.submit-button {
    background-color: #feca16; /* Yellow submit button */
    color: #fff; /* White text for button */
    padding: 12px 25px;
    border: none;
    border-radius: 0; /* Sharp corners */
    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 */
}