/* Start custom CSS for html, class: .elementor-element-52ee3ca *//* ==========================================
   DLC ELITE Form Container - Golden & White Theme
   ========================================== */
.dlc-registration,
.dlc-login {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #faf8f5; /* Soft warm ivory background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.registration-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8dfd1;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08);
    width: 100%;
    max-width: 650px;
    padding: 40px;
    box-sizing: border-box;
}

/* ==========================================
   Form Header
   ========================================== */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: #fdfbf7;
    color: #c59b27; /* Rich Metallic Gold */
    border: 1px solid #eedda6;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.form-header h2 {
    margin: 0 0 8px 0;
    color: #1a1714;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-header p {
    margin: 0;
    color: #786f65;
    font-size: 14px;
}

/* ==========================================
   Form Sections & Inputs
   ========================================== */
.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #38322c;
    border-bottom: 2px solid #f3ebe0;
    padding-bottom: 8px;
    margin: 25px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #c59b27;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #4a433c;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfd5c6;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1714;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c59b27;
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.2);
}

.form-group small {
    font-size: 12px;
    color: #786f65;
    margin-top: 5px;
}

/* Two-column layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ==========================================
   Phone & OTP Inline Buttons
   ========================================== */
.phone-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-code {
    background: #fdfbf7;
    border: 1px solid #dfd5c6;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: #4a433c;
    font-size: 14px;
}

.otp-btn,
.verify-btn {
    white-space: nowrap;
    padding: 12px 18px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%); /* Gold Gradient */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(170, 124, 17, 0.2);
}

.otp-btn:hover,
.verify-btn:hover {
    background: linear-gradient(135deg, #c59b27 0%, #8e650a 100%);
}

.otp-btn:disabled,
.verify-btn:disabled {
    background: #dcd3c5;
    box-shadow: none;
    cursor: not-allowed;
}

.otp-box {
    background-color: #fdfbf7;
    border: 1px dashed #d4af37;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ==========================================
   Submit Buttons & Tabs
   ========================================== */
.register-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(170, 124, 17, 0.25);
}

.register-btn:hover {
    background: linear-gradient(135deg, #c59b27 0%, #8e650a 100%);
}

.register-btn:disabled {
    background: #e2dad0;
    box-shadow: none;
    cursor: not-allowed;
}

.login-text {
    text-align: center;
    font-size: 14px;
    color: #786f65;
    margin-top: 20px;
}

.login-text a {
    color: #aa7c11;
    font-weight: 600;
    text-decoration: none;
}

.login-text a:hover {
    text-decoration: underline;
}

.security-box {
    margin-top: 25px;
    background-color: #fdfbf7;
    border: 1px solid #eedda6;
    color: #7a5a08;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-box i {
    font-size: 18px;
    color: #aa7c11;
}

/* ==========================================
   Responsive Adjustments (Mobile)
   ========================================== */
@media (max-width: 600px) {
    .registration-card {
        padding: 25px 20px;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .phone-group {
        flex-direction: column;
        align-items: stretch;
    }

    .otp-btn,
    .verify-btn {
        width: 100%;
    }
}/* End custom CSS */