/* General Section Styling */
section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h1, section h2 {
    text-align: center;
    color: #FF6F3C; /* Primary orange */
    margin-bottom: 10px;
}

section p {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-weight: bold;
    color: #333;
}

form label.required::after {
    content: " *";
    color: red;
}

form input, form select, form textarea {
    width: 95%; /* Reduced width to avoid touching edges */
    padding: 10px;
    margin-top: -8px;
    margin-bottom: 2px;
    font-size: 1rem;
    font-family: Arial, sans-serif; /* Ensure consistent font */
    color: #333; /* Consistent text color */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: #FF6F3C; /* Orange border highlight */
    box-shadow: 0 0 5px rgba(255, 111, 60, 0.5);
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    background: #FF6F3C; /* Primary orange */
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #E65C2F; /* Darker orange */
}

/* Adjustments for Specific Fields */
#org-location, #org-field {
    width: 97.75%; /* Dropdowns span full width for consistency */
}

/* Contact Us Section */
#contact-us {
    text-align: center;
    margin-top: 30px;
}

#contact-us a {
    color: #FF6F3C; /* Orange link */
    font-weight: bold;
    text-decoration: none;
}

#contact-us a:hover {
    text-decoration: underline;
}

/* Join Initiative Section */
#join-initiative {
    text-align: center;
    margin-top: 30px;
}

#join-initiative .button {
    display: inline-block;
    background: #FF6F3C; /* Primary orange */
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

#join-initiative .button:hover {
    background: #E65C2F; /* Darker orange */
}

/* Style for the logo upload field */
#org-logo {
    width: 95%; /* Match other input fields */
    padding: 10px; /* Add some padding for better usability */
    font-size: 1rem; /* Consistent font size */
    font-family: Arial, sans-serif; /* Match other input styles */
    color: #333; /* Text color */
    border: 1px solid #ccc; /* Border matching other inputs */
    border-radius: 5px; /* Rounded corners */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#org-logo:focus {
    outline: none; /* Remove default focus outline */
    border-color: #FF6F3C; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(255, 111, 60, 0.5); /* Add subtle glow effect */
}
