.volunteer-application-form-wrapper {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.volunteer-form {
    background: #fff;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.error {
    padding: 10px;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    background: #fff5f5;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.form-group input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}

.input-with-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-button input {
    flex: 1;
}

.button-link {
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.button-link:hover {
    background: #005a87;
}

.time-input {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.time-input label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    white-space: nowrap;
}

.time-input input {
    width: 200px;
}

.field-category {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.field-category h4 {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.form-description {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.form-note {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.form-note a {
    color: #0073aa;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.privacy-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.privacy-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.privacy-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
}

.privacy-content h4:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 10px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 5px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    padding: 15px 40px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #005a87;
}

.submit-button .icon {
    font-size: 18px;
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* 반응형 */
@media (max-width: 768px) {
    .volunteer-application-form-wrapper {
        padding: 10px;
    }
    
    .volunteer-form {
        padding: 20px;
    }
    
    .input-with-button {
        flex-direction: column;
    }
    
    .button-link {
        width: 100%;
        text-align: center;
    }
}

