/* Easy Forms Frontend Styles */
.easy-forms-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
}

.easy-forms-field {
    margin-bottom: 15px;
    box-sizing: border-box;
    width: 100%;
}

.easy-forms-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.easy-forms-field input[type="text"],
.easy-forms-field input[type="email"],
.easy-forms-field input[type="phone"],
.easy-forms-field input[type="age"],
.easy-forms-field input[type="url"],
.easy-forms-field textarea,
.easy-forms-field select {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.easy-forms-field input:focus,
.easy-forms-field textarea:focus,
.easy-forms-field select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.easy-forms-field textarea {
    min-height: 100px;
    resize: vertical;
}

.easy-forms-field label input[type="checkbox"] {
    margin-right: 8px;
}

.easy-forms-submit {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.easy-forms-submit:hover {
    background: #005a87;
}

.easy-forms-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Form Messages */
.easy-forms-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

.easy-forms-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.easy-forms-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .easy-forms-form {
        margin: 10px;
        padding: 15px;
        max-width: calc(100vw - 20px);
        width: 100%;
    }
    
    .easy-forms-field input[type="text"],
    .easy-forms-field input[type="email"],
    .easy-forms-field input[type="phone"],
    .easy-forms-field input[type="age"],
    .easy-forms-field input[type="url"],
    .easy-forms-field textarea,
    .easy-forms-field select {
        font-size: 16px; /* Prevents zoom on iOS */
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Ensure right-click and user interaction works */
.easy-forms-form * {
    pointer-events: auto !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
}

.easy-forms-field select {
    background: #fff !important;
    pointer-events: auto !important;
    cursor: pointer !important;
} 