/* Reset and base styles */
.lc-form-container,
.lc-form-container *,
.lc-form-container *::before,
.lc-form-container *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    line-height: 1.6;
    color: #1a202c;
    font-size: 16px;
}

/* Container */
.lc-form-container {
    max-width: 540px;
    margin: 2.5rem auto;
    padding: 0 1rem;
    background: transparent;
}

.lc-form-wrapper {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Title */
.lc-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.lc-form-description {
    font-size: 1rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Form layout */
.lc-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Labels */
.lc-label {
    font-weight: 600;
    font-size: 1.5rem;
    color: #2d3748;
    text-align: left;
}

/* Inputs */
.lc-input {
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lc-input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    background-color: #fff;
}

/* Button */
.lc-submit-button {
    padding: 0.85rem 1.5rem;
    background-color: #3182ce;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.lc-submit-button:hover {
    background-color: #2b6cb0;
}

/* Checkbox Group */
.lc-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.lc-checkbox {
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.lc-checkbox-label {
    color: #2d3748;
}

/* Success & Error Messages */
.lc-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
}

.lc-message.success {
    background-color: #f0fff4;
    color: #2f855a;
    border: 1px solid #c6f6d5;
}

.lc-message.success::before {
    content: "✓";
    font-size: 1.25rem;
    font-weight: bold;
    color: #2f855a;
}

.lc-message.error {
    background-color: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.lc-message.error::before {
    content: "✕";
    font-size: 1.25rem;
    font-weight: bold;
    color: #c53030;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lc-message {
    animation: fadeIn 0.3s ease-in-out;
}

.lc-form-note {
    font-size: 0.95rem;
    color: #2d3748; /* dark neutral for professionalism */
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .lc-form-wrapper {
        padding: 1.5rem;
    }

    .lc-form-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px){
  .lash-coupon-container { max-width: 100%; }
  .lash-time-value { font-size: 24px; }
  .lash-left-val { font-size: 30px; }
}
