/* Contact Form Modern Style - Matches the highlighted form in the image */

.contact-form-modern {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-modern h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.contact-form-modern .form-group {
    margin-bottom: 25px;
}

.contact-form-modern .form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: none;
    color: #333;
}

.contact-form-modern .form-control::placeholder {
    color: #555;
    opacity: 0.7;
}

.contact-form-modern .form-control:focus {
    border-bottom: 2px solid #0056b3;
    outline: none;
    box-shadow: none;
}

.contact-form-modern textarea.form-control {
    min-height: 80px;
    resize: none;
}

.contact-form-modern .submit-btn {
    background: linear-gradient(to right, #0056b3, #4CAF50);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.contact-form-modern .submit-btn:hover {
    background: linear-gradient(to right, #004494, #3e8e41);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-modern .submit-btn .btn-arrow {
    margin-left: 8px;
    font-size: 18px;
}

.contact-form-modern .form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.contact-form-modern .form-message.success {
    background-color: #e8f5e9;
    color: #388e3c;
    border: 1px solid #c8e6c9;
}

.contact-form-modern .form-message.error {
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.contact-form-modern .form-message.info {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

/* Ensure the form looks good on mobile */
@media (max-width: 768px) {
    .contact-form-modern {
        padding: 30px 20px;
    }
} 