.elementor-343 .elementor-element.elementor-element-75af59fe{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-529d5384 *//* ===============================
   THE MAGICAL JOURNEY – PREMIUM UI
   Updated: Fixed input visibility & theme overrides
================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap');

:root {
    --bg-dark: #0b0e11;
    --bg-input: rgba(255, 255, 255, 0.05);
    --border-soft: rgba(255, 255, 255, 0.1);
    --gold-1: #FFD700;
    --gold-2: #B8860B;
    --text-light: #ffffff;
    --radius: 22px;
    --font-main: 'Montserrat', sans-serif;
}

body {
    background-color: #050505; /* Deep black background for the page */
    font-family: var(--font-main);
}

/* ===============================
   FORM CONTAINER
================================ */

.uwp-registration-form,
.card-body {
    background: var(--bg-dark);
    padding: 100px 45px 55px;
    border-radius: 36px;
    border: 1px solid var(--border-soft);
    max-width: 580px;
    width: 92%;
    margin: 50px auto;
    position: relative;
    backdrop-filter: blur(14px);
    box-shadow: 
        0 40px 90px rgba(0, 0, 0, .85),
        inset 0 0 0 1px rgba(255, 255, 255, .02);
}

/* ===============================
   GOLD HEADING (Animated)
================================ */

.uwp-registration-form::before {
    content: "THE MAGICAL JOURNEY";
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 5px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldFloat 4s ease-in-out infinite;
}

@keyframes goldFloat {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
}

/* ===============================
   INPUT FIELDS (Strict Overrides)
================================ */

/* Targeting specific types and classes to prevent "White Box" glitch */
.uwp-registration-form input[type="text"],
.uwp-registration-form input[type="password"],
.uwp-registration-form input[type="email"],
.uwp-registration-form .form-control,
.uwp_form input {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-soft) !important;
    color: var(--text-light) !important;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    width: 100%;
    margin-bottom: 12px;
    transition: all .3s ease;
    box-sizing: border-box;
}

.uwp_form input::placeholder,
.form-control::placeholder {
    color: rgba(255, 255, 255, .4) !important;
}

/* Focus Effect */
.uwp_form input:focus,
.form-control:focus {
    border-color: var(--gold-1) !important;
    background: rgba(255, 255, 255, .08) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, .12) !important;
    outline: none;
}

/* ===============================
   NAME FIELDS GRID
================================ */

@media(min-width: 520px) {
    .uwp-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* ===============================
   PASSWORD STRENGTH METER
================================ */

.pw-strength-meter {
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin: 5px 0 20px;
    overflow: hidden;
}

.pw-strength-meter-bar {
    height: 100%;
    transition: width 0.4s ease;
}

/* Strengthening the "Medium" text label appearance */
.pw-strength-cnt {
    color: #fff;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===============================
   LUXURY BUTTON
================================ */

.uwp_register_submit {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.2);
    transition: .3s cubic-bezier(.2, .8, .2, 1);
}

.uwp_register_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .4);
    filter: brightness(1.1);
}

/* ===============================
   FOOTER & MISC
================================ */

.uwp-footer-links {
    text-align: center;
    margin-top: 30px;
}

.uwp-login-link {
    color: var(--gold-1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: .7;
}

.uwp-login-link:hover {
    opacity: 1;
    text-shadow: 0 0 8px var(--gold-1);
}

/* Remove default headers that might clash */
.uwp-registration-form h3, 
.uwp_form_title {
    display: none !important;
}

/* ===============================
   PASSWORD TOGGLE ICON FIX
================================ */

/* Remove the white background from the icon wrapper */
.uwp-password-wrap .input-group-text,
.uwp-password-wrap .uwp-show-password,
.uwp-password-wrap span[id*="password"] {
    background: transparent !important;
    border: none !important;
    color: var(--gold-1) !important; /* Makes the eye icon gold */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
    z-index: 10;
}

/* Adjust position to stay inside the dark input field */
.uwp-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* Ensure the icon doesn't have a background on hover */
.uwp-password-wrap .input-group-text:hover,
.uwp-password-wrap .uwp-show-password:hover {
    background: transparent !important;
    color: var(--text-light) !important; /* Glows white on hover */
    text-shadow: 0 0 8px var(--gold-1);
}

/* Fix for potential Bootstrap/Plugin styling that adds a grey border */
.input-group-append, .input-group-prepend {
    background: transparent !important;
    border: none !important;
}



.uwp-login-link {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white !important;
    padding: 8px 30px; /* Top/Bottom 8px aur Left/Right 30px */
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-block !important; /* Isse width sirf content tak rahegi */
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 142, 251, 0.4);
    border: none;
    width: 450px ; /* Width ko auto kar diya */
    min-width: 120px; /* Ek minimum width set ki hai taake button bahut chota na lage */
    margin: 0 auto; /* Center karne ke liye agar parent flex ho */
}

/* Hover effect ko barkarar rakha hai */
.uwp-login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 142, 251, 0.6);
    filter: brightness(1.1);
}
/* Input Fields ko "Glassy" touch dene ke liye */
input[type="text"], 
input[type="password"], 
input[type="email"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px !important;
}

/* Placeholder color behtar karne ke liye */
::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Register Heading */
.card-title {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px !important;
}/* End custom CSS */