/* EmailJS Form Styling */

/* Form styles for Mailchimp integration */

/* Form message styles */
.form-message {
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-weight: 500;
}

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

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

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Form field styles */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Submit button styles */
.submit-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    cursor: pointer;
}

.submit-btn:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Disabled form styles */
input:disabled, textarea:disabled, button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Form Focus State */
.form-group input:disabled,
.form-group textarea:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Custom styles for form elements */
.rbt-contact-form .form-message {
    font-weight: 500;
} 