.asymbl-application-form {
    max-width: 600px;
}

.asymbl-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.asymbl-form-field {
    flex: 1;
}

.asymbl-form-field-full {
    flex: 1 1 100%;
}

.asymbl-form-field label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.asymbl-form-field label .required {
    color: #dc3545;
}

.asymbl-form-field input[type="text"],
.asymbl-form-field input[type="email"],
.asymbl-form-field input[type="tel"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.asymbl-form-field input[type="file"] {
    width: 100%;
    padding: 8px 0;
}

.asymbl-field-help {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.asymbl-submit-btn {
    background: #002F59;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.asymbl-submit-btn:hover {
    background: #001f3d;
}

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

#asymbl-form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 4px;
}

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

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

@media (max-width: 576px) {
    .asymbl-form-row {
        flex-direction: column;
        gap: 12px;
    }
}
