/* Expense Contact Form Frontend Styles */

.ecf-form-wrapper {
    max-width: 700px;
    margin: 20px 0;
}

.ecf-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ecf-field-group {
    margin-bottom: 25px;
}

.ecf-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.ecf-required {
    color: #dc3545;
    margin-left: 3px;
}

.ecf-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.ecf-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.ecf-input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    background: #f9f9f9;
    cursor: pointer;
}

.ecf-input[type="file"]:hover {
    border-color: #0073aa;
    background: #f0f7fa;
}

.ecf-file-hint {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}

.ecf-submit-wrapper {
    margin-top: 30px;
}

.ecf-submit-button {
    background: #0073aa;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

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

.ecf-submit-button:active {
    transform: translateY(1px);
}

.ecf-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.ecf-form-message {
    padding: 12px 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .ecf-form {
        padding: 25px;
    }
}

