/* =============================================
   FORM STYLES - LOTAZAP THEME
   ============================================= */

/* Form Container */
.lotazap-form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form Elements */
.lotazap-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
}

.form-label.required:after {
    content: " *";
    color: #dc3545;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.25);
}

/* Form Button */
.form-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

.form-submit i {
    font-size: 1.1rem;
}

/* Form Validation */
.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.is-invalid {
    border-color: #dc3545;
}

.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Success Message */
.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Responsive Forms */
@media (max-width: 576px) {
    .lotazap-form-container {
        padding: 1.5rem;
    }
    
    .form-submit {
        width: 100%;
    }
}

/* Inline Form Layout */
.form-inline .form-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.form-inline .form-label {
    margin-bottom: 0;
    min-width: 100px;
}

/* Checkbox Styles */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
}