/* ============================================
   NOVA PREMIUM AUTH PAGES - COMPLETE OVERHAUL
   Ultra Premium Login & Register Design
   ============================================ */

/* AGGRESSIVE RESET - Override everything */
body#clean-theme-client {
    min-height: 100vh !important;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f0f2d 100%) !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

body#clean-theme-client::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(102, 126, 234, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Main Wrapper */
body#clean-theme-client #wrapper {
    position: relative !important;
    z-index: 1 !important;
    min-height: calc(100vh - 200px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px 20px !important;
}

/* Container */
body#clean-theme-client .clean-theme-signinup-con {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important;
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* ============================================
   RIGHT SIDE - FORM CARD
   ============================================ */
body#clean-theme-client .clean-theme-signinup-right {
    flex: 0 0 450px !important;
    max-width: 450px !important;
    background: rgba(20, 20, 40, 0.9) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 28px !important;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Animated Top Border */
body#clean-theme-client .clean-theme-signinup-right::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #667eea, #a855f7, #06b6d4, #f59e0b, #667eea) !important;
    background-size: 400% 100% !important;
    animation: gradient-flow 6s linear infinite !important;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 0%;
    }
}

/* Inner Padding */
body#clean-theme-client .clean-theme-signinup-right .padding50,
body#clean-theme-client .clean-theme-signinup-right>div {
    padding: 50px 45px !important;
}

/* Form Title */
body#clean-theme-client .clean-theme-signinup-right-title {
    text-align: center !important;
    margin-bottom: 40px !important;
}

body#clean-theme-client .clean-theme-signinup-right-title h4 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Social Buttons */
body#clean-theme-client .socialconnect {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 25px !important;
}

body#clean-theme-client .socialconnect a,
body#clean-theme-client .socialconnect button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
    font-size: 22px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}

body#clean-theme-client .socialconnect a:hover,
body#clean-theme-client .socialconnect button:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(168, 85, 247, 0.3)) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.25) !important;
}

/* ============================================
   FORM INPUTS - ULTRA PREMIUM
   ============================================ */
body#clean-theme-client .clean-theme-signinup-right .yuzde100 {
    margin-bottom: 20px !important;
}

body#clean-theme-client .clean-theme-signinup-right input[type="text"],
body#clean-theme-client .clean-theme-signinup-right input[type="email"],
body#clean-theme-client .clean-theme-signinup-right input[type="password"],
body#clean-theme-client .clean-theme-signinup-right input[type="tel"],
body#clean-theme-client .clean-theme-signinup-right textarea,
body#clean-theme-client .clean-theme-signinup-right select {
    width: 100% !important;
    padding: 18px 22px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    color: #f1f5f9 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
}

body#clean-theme-client .clean-theme-signinup-right input::placeholder {
    color: #6b7280 !important;
    font-weight: 400 !important;
}

body#clean-theme-client .clean-theme-signinup-right input:focus,
body#clean-theme-client .clean-theme-signinup-right select:focus,
body#clean-theme-client .clean-theme-signinup-right textarea:focus {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.08) !important;
    box-shadow:
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 10px 30px rgba(102, 126, 234, 0.1) !important;
}

/* Checkbox */
body#clean-theme-client .checkbox-custom-label,
body#clean-theme-client .checkbox-custom-label .checktext {
    color: #9ca3af !important;
    font-size: 14px !important;
}

/* Forgot Password Link */
body#clean-theme-client .forgotpasslink,
body#clean-theme-client .sifreunuttulink {
    color: #93c5fd !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

body#clean-theme-client .forgotpasslink:hover,
body#clean-theme-client .sifreunuttulink:hover {
    color: #60a5fa !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5) !important;
}

/* ============================================
   SUBMIT BUTTON - GRADIENT PREMIUM
   ============================================ */
body#clean-theme-client .clean-theme-signinup-right .clean-theme-btn,
body#clean-theme-client .clean-theme-signinup-right button[type="button"],
body#clean-theme-client .clean-theme-signinup-right .mio-ajax-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 20px 30px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #a855f7 100%) !important;
    background-size: 200% 200% !important;
    border: none !important;
    border-radius: 14px !important;
    color: white !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.35) !important;
    text-transform: none !important;
    margin-top: 25px !important;
    animation: btn-gradient 4s ease infinite !important;
}

@keyframes btn-gradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

body#clean-theme-client .clean-theme-signinup-right .clean-theme-btn:hover,
body#clean-theme-client .clean-theme-signinup-right button[type="button"]:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.45) !important;
}

/* ============================================
   LEFT SIDE - PROMO AREA
   ============================================ */
body#clean-theme-client .clean-theme-signinup-left {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px !important;
    text-align: center !important;
    position: relative !important;
}

/* Glowing Orb Background */
body#clean-theme-client .clean-theme-signinup-left::before {
    content: '' !important;
    position: absolute !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), rgba(168, 85, 247, 0.2), transparent 70%) !important;
    border-radius: 50% !important;
    filter: blur(80px) !important;
    animation: orb-pulse 5s ease-in-out infinite !important;
    z-index: 0 !important;
}

@keyframes orb-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

body#clean-theme-client .clean-theme-signinup-left img {
    width: 120px !important;
    height: auto !important;
    margin-bottom: 35px !important;
    filter: drop-shadow(0 15px 40px rgba(102, 126, 234, 0.5)) !important;
    animation: float-icon 4s ease-in-out infinite !important;
    position: relative !important;
    z-index: 1 !important;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

body#clean-theme-client .clean-theme-signinup-left h4 {
    color: #f1f5f9 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin-bottom: 35px !important;
    position: relative !important;
    z-index: 1 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

body#clean-theme-client .clean-theme-signinup-left .clean-theme-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 40px !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 14px !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    width: auto !important;
    animation: none !important;
}

body#clean-theme-client .clean-theme-signinup-left .clean-theme-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   CAPTCHA STYLING
   ============================================ */
body#clean-theme-client .captcha-content {
    margin: 25px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
}

body#clean-theme-client .captchainput {
    text-align: center !important;
    max-width: 200px !important;
    letter-spacing: 3px !important;
}

/* ============================================
   VERIFICATION MODALS
   ============================================ */
body#clean-theme-client .verificationcontent {
    text-align: center !important;
    padding: 50px !important;
    background: rgba(20, 20, 40, 0.95) !important;
    border-radius: 20px !important;
}

body#clean-theme-client .verificationcontent h1 {
    color: #f1f5f9 !important;
    font-size: 26px !important;
    margin-bottom: 25px !important;
}

body#clean-theme-client .verificationcontent h1 i {
    font-size: 70px !important;
    background: linear-gradient(135deg, #667eea, #a855f7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: block !important;
    margin-bottom: 25px !important;
}

body#clean-theme-client .verificationcontent p {
    color: #9ca3af !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

body#clean-theme-client .gonderbtn.yesilbtn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 45px !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border-radius: 12px !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3) !important;
}

body#clean-theme-client .gonderbtn.yesilbtn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4) !important;
}

/* ============================================
   SUCCESS STATES
   ============================================ */
body#clean-theme-client #Success_Div,
body#clean-theme-client #forget_success {
    padding: 50px !important;
    text-align: center !important;
}

body#clean-theme-client #Success_Div i,
body#clean-theme-client #forget_success i {
    font-size: 80px !important;
    color: #10b981 !important;
    margin-bottom: 25px !important;
}

body#clean-theme-client #Success_Div h4,
body#clean-theme-client #forget_success h4 {
    color: #10b981 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

body#clean-theme-client #Success_Div h5,
body#clean-theme-client #forget_success h5 {
    color: #9ca3af !important;
    font-size: 16px !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    body#clean-theme-client .clean-theme-signinup-con {
        flex-direction: column-reverse !important;
        gap: 40px !important;
        padding: 30px 20px !important;
    }

    body#clean-theme-client .clean-theme-signinup-right {
        flex: 1 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    body#clean-theme-client .clean-theme-signinup-left {
        padding: 40px 20px !important;
    }

    body#clean-theme-client .clean-theme-signinup-left::before {
        width: 250px !important;
        height: 250px !important;
    }
}

@media (max-width: 576px) {

    body#clean-theme-client .clean-theme-signinup-right .padding50,
    body#clean-theme-client .clean-theme-signinup-right>div {
        padding: 35px 25px !important;
    }

    body#clean-theme-client .clean-theme-signinup-right-title h4 {
        font-size: 26px !important;
    }

    body#clean-theme-client .clean-theme-signinup-left h4 {
        font-size: 22px !important;
    }

    body#clean-theme-client .clean-theme-signinup-left img {
        width: 80px !important;
    }
}

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] body#clean-theme-client,
body#clean-theme-client[data-theme="light"] {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
}

[data-theme="light"] body#clean-theme-client::before,
body#clean-theme-client[data-theme="light"]::before {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 50%) !important;
}

[data-theme="light"] body#clean-theme-client .clean-theme-signinup-right,
body#clean-theme-client[data-theme="light"] .clean-theme-signinup-right {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="light"] body#clean-theme-client .clean-theme-signinup-right-title h4,
body#clean-theme-client[data-theme="light"] .clean-theme-signinup-right-title h4 {
    color: #0f172a !important;
}

[data-theme="light"] body#clean-theme-client .clean-theme-signinup-right input,
body#clean-theme-client[data-theme="light"] .clean-theme-signinup-right input {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: #0f172a !important;
}

[data-theme="light"] body#clean-theme-client .clean-theme-signinup-right input:focus,
body#clean-theme-client[data-theme="light"] .clean-theme-signinup-right input:focus {
    border-color: #667eea !important;
    background: white !important;
}

[data-theme="light"] body#clean-theme-client .clean-theme-signinup-left h4,
body#clean-theme-client[data-theme="light"] .clean-theme-signinup-left h4 {
    color: #0f172a !important;
}