/* Layout base */
.lcf-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: inherit;
    color: #ffffff;
}

.lcf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.lcf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lcf-field-full {
    width: 100%;
}

.lcf-field label {
    font-size: 0.95rem;
    font-weight: 500;
}

.lcf-field input,
.lcf-field textarea {
    background: #050607;
    border-radius: 10px;
    border: 1px solid #2e3138;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
}

.lcf-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus */
.lcf-field input:focus,
.lcf-field textarea:focus {
    border-color: #00e676;
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.8),
        0 0 20px rgba(0, 230, 118, 0.45);
    background: #050909;
}

/* reCAPTCHA wrapper: integrarlo con el diseño dark */
.lcf-recaptcha-wrapper {
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 10px 12px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #15161b 0, #050608 60%, #020203 100%);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255,255,255,0.06);
    display: inline-block;
}

/* Botón */
.lcf-submit-wrapper {
    margin-top: 8px;
}

.lcf-submit-btn {
    width: 100% !important;
    border: solid 2px #15bd68 !important;
    border-radius: 10px !important;
    padding: 15px !important;
    font-size: 1.05rem;
    font-weight: 700 !important;
    color: #03140a !important;
    background: #15bd68 !important;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7) !important;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.lcf-submit-btn:hover {
    background: none !important;
    color: #15bd68 !important;
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.8)!important;
    opacity: .8;
}

.lcf-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

/* Mensaje */
.lcf-message {
    margin-top: 8px;
    font-size: 0.95rem;
}

.lcf-message.lcf-success {
    color: #6fffb5;
}

.lcf-message.lcf-error {
    color: #ff8a80;
}

/* Responsive */
@media (max-width: 768px) {
    .lcf-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
