/* =========================================================
   BULLTRADE LOGIN
   Login.css - Part 1
   Theme: Black + Luxury Gold
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    /* Black Palette */
    --black: #000000;
    --black-soft: #050505;
    --black-light: #0b0b0b;
    --charcoal: #111111;
    --charcoal-light: #181818;

    /* Gold Palette */
    --gold: #D4AF37;
    --gold-light: #F5D76E;
    --gold-bright: #FFE89A;
    --gold-dark: #A67C00;

    /* Text */
    --white: #FFFFFF;
    --text-primary: #F5F5F5;
    --text-secondary: #B8B8B8;
    --text-muted: #777777;

    /* Borders */
    --border-gold:
        rgba(212, 175, 55, 0.20);

    --border-light:
        rgba(255, 255, 255, 0.08);

    /* Glass */
    --glass:
        rgba(255, 255, 255, 0.035);

    --glass-light:
        rgba(255, 255, 255, 0.065);

    /* Shadows */
    --shadow-dark:
        0 30px 80px rgba(0, 0, 0, 0.80);

    --shadow-gold:
        0 15px 45px rgba(212, 175, 55, 0.18);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    /* Transition */
    --transition:
        all 0.35s ease;

}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


html {

    width: 100%;

    min-height: 100%;

    scroll-behavior: smooth;

}


body {

    width: 100%;

    min-height: 100vh;

    margin: 0;

    padding: 0;

    font-family:
        'Poppins',
        sans-serif;

    color:
        var(--text-primary);

    background: #000000;
		
	background-image: url("https://bulltrade.tech/assets/img/background.jpg"); 
	background-repeat: no-repeat; 
	background-position: center center; 
	background-size: cover; 
	background-attachment: fixed; 
	background-color: #000000; /* Fallback color */">
    overflow-x: hidden;

}


/* =========================================================
   LINKS
   ========================================================= */

a {

    text-decoration: none;

    color:
        inherit;

}


button,
input,
select,
textarea {

    font-family:
        'Poppins',
        sans-serif;

}


/* =========================================================
   MAIN BACKGROUND
   ========================================================= */

.login-wrapper {

    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 35px;

}


/* =========================================================
   BACKGROUND ANIMATION
   ========================================================= */

.bg-animation {

    position: fixed;

    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(212, 175, 55, 0.055),
            transparent 30%
        ),

        radial-gradient(
            circle at 85% 80%,
            rgba(212, 175, 55, 0.04),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #000000 0%,
            #050505 45%,
            #0b0b0b 100%
        );

}


/* =========================================================
   ANIMATED CIRCLES
   ========================================================= */

.circle {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    opacity: 0.20;

    pointer-events: none;

}


/* Gold Circle */

.c1 {

    width: 420px;

    height: 420px;

    top: -180px;

    left: -120px;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.24),
            rgba(212, 175, 55, 0.02) 65%,
            transparent 75%
        );

    animation:
        floatOne 12s ease-in-out infinite;

}


/* Gray Circle */

.c2 {

    width: 360px;

    height: 360px;

    right: -130px;

    top: 12%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.08),
            transparent 70%
        );

    animation:
        floatTwo 15s ease-in-out infinite;

}


/* Dark Gold Circle */

.c3 {

    width: 500px;

    height: 500px;

    bottom: -280px;

    left: 20%;

    background:
        radial-gradient(
            circle,
            rgba(166, 124, 0, 0.15),
            transparent 70%
        );

    animation:
        floatThree 18s ease-in-out infinite;

}


/* Light Gold Circle */

.c4 {

    width: 260px;

    height: 260px;

    right: 25%;

    bottom: -120px;

    background:
        radial-gradient(
            circle,
            rgba(245, 215, 110, 0.10),
            transparent 70%
        );

    animation:
        floatFour 14s ease-in-out infinite;

}


/* =========================================================
   CIRCLE ANIMATIONS
   ========================================================= */

@keyframes floatOne {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(45px, 35px, 0)
            scale(1.08);

    }

}


@keyframes floatTwo {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(-40px, 50px, 0)
            scale(1.12);

    }

}


@keyframes floatThree {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(35px, -40px, 0)
            scale(1.06);

    }

}


@keyframes floatFour {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(-35px, -30px, 0)
            scale(1.10);

    }

}


/* =========================================================
   GRID OVERLAY
   ========================================================= */

.grid-overlay {

    position: absolute;

    inset: 0;

    opacity: 0.25;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 25%,
            black 75%,
            transparent
        );

}


/* =========================================================
   LOGIN CONTAINER
   ========================================================= */

.login-container {

    position: relative;

    width: 100%;

    max-width: 1280px;

    min-height: 720px;

    overflow: hidden;

    border-radius:
        var(--radius-xl);

    border:
        1px solid
        rgba(212, 175, 55, 0.14);

    background:
        rgba(8, 8, 8, 0.80);

    box-shadow:
        var(--shadow-dark);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

}


/* =========================================================
   LEFT PANEL
   ========================================================= */

.left-panel {

    position: relative;

    height: 100%;

    min-height: 720px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 20% 20%,
            rgba(212,175,55,0.08),
            transparent 35%
        ),

        linear-gradient(
            145deg,
            #030303 0%,
            #090909 50%,
            #000000 100%
        );

    border-right:
        1px solid
        rgba(212,175,55,0.12);

}


/* =========================================================
   LEFT PANEL OVERLAY
   ========================================================= */

.left-panel .overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 80% 15%,
            rgba(245,215,110,0.10),
            transparent 28%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(212,175,55,0.06),
            transparent 35%
        );

}


/* =========================================================
   BRAND CONTENT
   ========================================================= */

.brand-content {

    position: relative;

    z-index: 2;

    height: 100%;

    min-height: 720px;

    display: flex;

    flex-direction: column;

    padding: 60px;

}


/* =========================================================
   LOGO AREA
   ========================================================= */

.logo-area {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.brand-logo {

    display: flex;

    align-items: center;

    gap: 15px;

}


/* =========================================================
   BRAND MARK
   ========================================================= */

.brand-mark {

    position: relative;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    border:
        1px solid
        rgba(245,215,110,0.50);

    background:

        linear-gradient(
            145deg,
            #F5D76E,
            #D4AF37 55%,
            #A67C00
        );

    box-shadow:

        0 10px 30px
        rgba(212,175,55,0.22),

        inset 0 1px 0
        rgba(255,255,255,0.35);

}


.brand-b {

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    color:
        #050505;

}


/* =========================================================
   BRAND NAME
   ========================================================= */

.brand-name {

    display: flex;

    align-items: baseline;

    gap: 4px;

    font-size: 25px;

    font-weight: 500;

    letter-spacing: 4px;

    color:
        #FFFFFF;

}


.brand-name strong {

    color:
        var(--gold);

    font-weight: 800;

}


/* =========================================================
   BRAND TAGLINE
   ========================================================= */

.brand-tagline {

    margin-top: 14px;

    margin-bottom: 0;

    color:
        var(--gold-light);

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {

    margin-top: auto;

    margin-bottom: 50px;

    max-width: 500px;

}


.hero-icon {

    width: 62px;

    height: 62px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    color:
        var(--gold-light);

    background:
        rgba(212,175,55,0.08);

    border:
        1px solid
        rgba(212,175,55,0.20);

    box-shadow:
        0 12px 35px
        rgba(0,0,0,0.40);

}


.hero-icon i {

    font-size: 27px;

}


.hero-content h1 {

    margin: 0 0 18px;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;

    color:
        #FFFFFF;

}


.hero-content h1::after {

    content: "";

    display: block;

    width: 65px;

    height: 3px;

    margin-top: 18px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );

}


.hero-content p {

    margin: 0;

    max-width: 460px;

    color:
        var(--text-secondary);

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.feature-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.feature-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 15px 17px;

    border-radius:
        var(--radius-md);

    border:
        1px solid
        rgba(255,255,255,0.05);

    background:
        rgba(255,255,255,0.025);

    transition:
        var(--transition);

}


.feature-item:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(212,175,55,0.18);

    background:
        rgba(212,175,55,0.035);

}


.feature-item .icon {

    flex: 0 0 44px;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color:
        var(--gold-light);

    background:
        rgba(212,175,55,0.08);

    border:
        1px solid
        rgba(212,175,55,0.13);

}


.feature-item .icon i {

    font-size: 18px;

}


.feature-content h5 {

    margin: 0 0 3px;

    color:
        #FFFFFF;

    font-size: 13px;

    font-weight: 600;

}


.feature-content p {

    margin: 0;

    color:
        var(--text-muted);

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================================
   BOTTOM TEXT
   ========================================================= */

.bottom-text {

    margin-top: auto;

    padding-top: 35px;

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        var(--text-muted);

    font-size: 10px;

    letter-spacing: 2px;

}


.bottom-text span {

    color:
        var(--gold);

    font-weight: 700;

}


.bottom-text small {

    color:
        #555555;

    font-size: 10px;

}


/* =========================================================
   RIGHT PANEL
   ========================================================= */

.right-panel {

    position: relative;

    min-height: 720px;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0.035)
        );

}


/* =========================================================
   MOBILE BRAND
   ========================================================= */

.mobile-brand {

    display: none;

}
/* =========================================================
   BULLTRADE LOGIN
   Login.css - Part 2
   Login Card & Form Controls
   ========================================================= */


/* =========================================================
   LOGIN CARD
   ========================================================= */

.login-card {

    position: relative;

    width: 100%;

    max-width: 475px;

    padding: 42px 40px;

    border-radius:
        var(--radius-xl);

    border:
        1px solid
        rgba(212,175,55,0.16);

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.025)
        );

    box-shadow:

        0 25px 70px
        rgba(0,0,0,0.65),

        inset 0 1px 0
        rgba(255,255,255,0.04);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

}


/* =========================================================
   GOLD TOP ACCENT
   ========================================================= */

.login-card::before {

    content: "";

    position: absolute;

    top: -1px;

    left: 15%;

    width: 70%;

    height: 2px;

    border-radius: 10px;

    background:

        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            var(--gold-light),
            var(--gold),
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(212,175,55,0.35);

}


/* =========================================================
   LOGIN HEADER
   ========================================================= */

.login-header {

    text-align: center;

    margin-bottom: 32px;

}


.login-icon {

    width: 64px;

    height: 64px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 19px;

    color:
        var(--gold-light);

    background:

        linear-gradient(
            145deg,
            rgba(212,175,55,0.14),
            rgba(212,175,55,0.035)
        );

    border:
        1px solid
        rgba(212,175,55,0.22);

    box-shadow:

        0 12px 30px
        rgba(0,0,0,0.35),

        inset 0 1px 0
        rgba(255,255,255,0.06);

}


.login-icon i {

    font-size: 27px;

}


.login-header h2 {

    margin: 0 0 8px;

    color:
        #FFFFFF;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.5px;

}


.login-header p {

    margin: 0;

    color:
        var(--text-secondary);

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   LOGIN MESSAGE
   ========================================================= */

.login-message {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 22px;

    padding: 13px 15px;

    border-radius:
        var(--radius-sm);

    border:
        1px solid
        rgba(220,53,69,0.30);

    background:
        rgba(220,53,69,0.08);

    color:
        #ff9aa4;

    font-size: 12px;

    line-height: 1.6;

}


.login-message i {

    flex: 0 0 auto;

    margin-top: 2px;

}


/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group {

    margin-bottom: 22px;

}


/* =========================================================
   FORM LABEL
   ========================================================= */

.form-label {

    display: block;

    margin-bottom: 9px;

    color:
        #E9E9E9;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 0.3px;

}


/* =========================================================
   INPUT WRAPPER
   ========================================================= */

.input-wrapper {

    position: relative;

    width: 100%;

}


/* =========================================================
   INPUT ICON
   ========================================================= */

.input-icon {

    position: absolute;

    top: 50%;

    left: 16px;

    z-index: 3;

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--gold);

    transform:
        translateY(-50%);

    pointer-events: none;

}


.input-icon i {

    font-size: 16px;

}


/* =========================================================
   FORM CONTROL
   ========================================================= */

.form-control {

    width: 100%;

    height: 54px;

    padding:
        0 16px 0 48px;

    border-radius:
        var(--radius-sm);

    border:
        1px solid
        rgba(255,255,255,0.09);

    outline: none;

    color:
        #FFFFFF;

    background:
        rgba(0,0,0,0.35);

    font-size: 13px;

    transition:
        var(--transition);

    box-shadow:
        inset 0 1px 2px
        rgba(0,0,0,0.25);

}


.form-control::placeholder {

    color:
        #666666;

    opacity: 1;

}


.form-control:hover {

    border-color:
        rgba(212,175,55,0.22);

}


.form-control:focus {

    color:
        #FFFFFF;

    background:
        rgba(0,0,0,0.48);

    border-color:
        var(--gold);

    outline: none;

    box-shadow:

        0 0 0 3px
        rgba(212,175,55,0.08),

        0 0 20px
        rgba(212,175,55,0.05);

}


.form-control:focus
~ .input-icon {

    color:
        var(--gold-light);

}


/* =========================================================
   PASSWORD INPUT
   ========================================================= */

.password-control {

    padding-right: 52px;

}


/* =========================================================
   PASSWORD TOGGLE
   ========================================================= */

.password-toggle {

    position: absolute;

    top: 50%;

    right: 8px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 9px;

    color:
        #777777;

    background:
        transparent;

    cursor: pointer;

    transform:
        translateY(-50%);

    transition:
        var(--transition);

}


.password-toggle:hover {

    color:
        var(--gold-light);

    background:
        rgba(212,175,55,0.07);

}


.password-toggle:focus {

    outline: none;

    color:
        var(--gold-light);

    box-shadow:
        0 0 0 2px
        rgba(212,175,55,0.12);

}


.password-toggle i {

    font-size: 17px;

}


/* =========================================================
   PASSWORD LABEL ROW
   ========================================================= */

.password-label-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.password-label-row .form-label {

    margin-bottom: 9px;

}


/* =========================================================
   FORGOT PASSWORD
   ========================================================= */

.forgot-link {

    margin-bottom: 9px;

    color:
        var(--gold);

    font-size: 11px;

    font-weight: 500;

    transition:
        var(--transition);

}


.forgot-link:hover {

    color:
        var(--gold-light);

    text-decoration:
        underline;

}


/* =========================================================
   VALIDATION ERROR
   ========================================================= */

.field-error {

    display: block;

    margin-top: 7px;

    color:
        #ff8d98;

    font-size: 10px;

    line-height: 1.5;

}


/* =========================================================
   REMEMBER ME
   ========================================================= */

.login-options {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: -3px;

    margin-bottom: 24px;

}


.remember-box {

    display: flex;

    align-items: center;

    gap: 9px;

}


.remember-box input[type="checkbox"] {

    width: 16px;

    height: 16px;

    margin: 0;

    accent-color:
        var(--gold);

    cursor: pointer;

}


.remember-box label {

    color:
        var(--text-secondary);

    font-size: 11px;

    cursor: pointer;

    user-select: none;

    transition:
        var(--transition);

}


.remember-box label:hover {

    color:
        #FFFFFF;

}


/* =========================================================
   LOGIN BUTTON WRAPPER
   ========================================================= */

.login-button-wrapper {

    width: 100%;

}


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

.btn-login {

    position: relative;

    width: 100%;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 0 25px;

    border: 0;

    border-radius:
        var(--radius-sm);

    color:
        #050505;

    background:

        linear-gradient(
            135deg,
            var(--gold-light) 0%,
            var(--gold) 50%,
            var(--gold-dark) 100%
        );

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:

        0 12px 30px
        rgba(212,175,55,0.18),

        inset 0 1px 0
        rgba(255,255,255,0.30);

    transition:
        var(--transition);

}


.btn-login::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 60%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.30),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.6s ease;

}


.btn-login:hover {

    color:
        #000000;

    transform:
        translateY(-2px);

    background:

        linear-gradient(
            135deg,
            #FFE89A 0%,
            #D4AF37 55%,
            #B88908 100%
        );

    box-shadow:

        0 16px 40px
        rgba(212,175,55,0.30),

        inset 0 1px 0
        rgba(255,255,255,0.40);

}


.btn-login:hover::before {

    left: 140%;

}


.btn-login:active {

    transform:
        translateY(0);

    box-shadow:
        0 8px 20px
        rgba(212,175,55,0.20);

}


.btn-login:focus {

    outline: none;

    box-shadow:

        0 0 0 3px
        rgba(212,175,55,0.12),

        0 12px 30px
        rgba(212,175,55,0.18);

}
/* =========================================================
   BULLTRADE LOGIN
   Login.css - Part 3
   Footer Elements, Loading & Responsive
   ========================================================= */


/* =========================================================
   DIVIDER
   ========================================================= */

.divider {

    position: relative;

    width: 100%;

    margin: 27px 0 23px;

    text-align: center;

}


.divider::before {

    content: "";

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    height: 1px;

    background:
        rgba(255,255,255,0.07);

}


.divider span {

    position: relative;

    z-index: 2;

    display: inline-block;

    padding: 0 14px;

    color:
        #666666;

    background:
        #111111;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 2px;

}


/* =========================================================
   REGISTER LINK
   ========================================================= */

.register-link {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-bottom: 27px;

    color:
        var(--text-secondary);

    font-size: 11px;

}


.register-link a {

    color:
        var(--gold);

    font-weight: 600;

    transition:
        var(--transition);

}


.register-link a:hover {

    color:
        var(--gold-light);

    text-decoration:
        underline;

}


/* =========================================================
   SECURITY NOTICE
   ========================================================= */

.security-note {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 15px;

    border-radius:
        var(--radius-sm);

    border:
        1px solid
        rgba(212,175,55,0.10);

    background:
        rgba(212,175,55,0.035);

}


.security-icon {

    flex: 0 0 38px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color:
        var(--gold-light);

    background:
        rgba(212,175,55,0.08);

    border:
        1px solid
        rgba(212,175,55,0.12);

}


.security-icon i {

    font-size: 17px;

}


.security-note strong {

    display: block;

    margin-bottom: 2px;

    color:
        #D8D8D8;

    font-size: 10px;

    font-weight: 600;

}


.security-note small {

    display: block;

    color:
        #666666;

    font-size: 9px;

    line-height: 1.5;

}


/* =========================================================
   LOADING OVERLAY
   ========================================================= */

.loading-overlay {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background:
        rgba(0,0,0,0.88);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

}


/* Active State */

.loading-overlay.show {

    display: flex;

    animation:
        fadeIn 0.25s ease forwards;

}


/* =========================================================
   LOADING CARD
   ========================================================= */

.loading-card {

    width: 100%;

    max-width: 340px;

    padding: 38px 30px;

    text-align: center;

    border-radius:
        var(--radius-lg);

    border:
        1px solid
        rgba(212,175,55,0.18);

    background:

        linear-gradient(
            145deg,
            rgba(20,20,20,0.98),
            rgba(5,5,5,0.98)
        );

    box-shadow:

        0 30px 80px
        rgba(0,0,0,0.70),

        0 0 40px
        rgba(212,175,55,0.05);

}


.loading-logo {

    width: 55px;

    height: 55px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    color:
        #050505;

    background:

        linear-gradient(
            145deg,
            var(--gold-light),
            var(--gold),
            var(--gold-dark)
        );

    font-size: 25px;

    font-weight: 800;

    box-shadow:

        0 10px 30px
        rgba(212,175,55,0.20);

}


.loading-card .spinner-border {

    width: 26px;

    height: 26px;

    margin-bottom: 18px;

    color:
        var(--gold);

    border-width: 2px;

}


/* =========================================================
   LOADING TITLE
   ========================================================= */

.loading-title {

    margin-bottom: 7px;

    color:
        #FFFFFF;

    font-size: 15px;

    font-weight: 600;

}


.loading-text {

    color:
        #777777;

    font-size: 10px;

    line-height: 1.7;

}


/* =========================================================
   FADE ANIMATION
   ========================================================= */

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}


/* =========================================================
   FORM DISABLED STATE
   ========================================================= */

.login-card.loading {

    pointer-events: none;

}


.login-card.loading .btn-login {

    opacity: 0.65;

}


/* =========================================================
   AUTOFILL
   ========================================================= */

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {

    -webkit-text-fill-color:
        #FFFFFF;

    -webkit-box-shadow:
        0 0 0 1000px #0c0c0c inset;

    transition:
        background-color 5000s ease-in-out 0s;

}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {

    color:
        #050505;

    background:
        var(--gold);

}


::-moz-selection {

    color:
        #050505;

    background:
        var(--gold);

}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {

    width: 5px;

}


::-webkit-scrollbar-track {

    background:
        #050505;

}


::-webkit-scrollbar-thumb {

    border-radius: 10px;

    background:
        linear-gradient(
            to bottom,
            var(--gold-light),
            var(--gold-dark)
        );

}


::-webkit-scrollbar-thumb:hover {

    background:
        var(--gold-light);

}


/* =========================================================
   FIREFOX SCROLLBAR
   ========================================================= */

html {

    scrollbar-width: thin;

    scrollbar-color:
        var(--gold-dark)
        #050505;

}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .login-container {

        max-width: 1340px;

        min-height: 760px;

    }


    .left-panel,
    .right-panel,
    .brand-content {

        min-height: 760px;

    }


    .brand-content {

        padding: 70px;

    }


    .hero-content h1 {

        font-size: 46px;

    }

}


/* =========================================================
   DESKTOP / LAPTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .login-wrapper {

        padding: 25px;

    }


    .brand-content {

        padding: 45px;

    }


    .right-panel {

        padding: 40px;

    }


    .hero-content h1 {

        font-size: 36px;

    }


    .login-card {

        padding: 36px 32px;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .login-wrapper {

        min-height: 100vh;

        padding: 25px 18px;

    }


    .login-container {

        max-width: 620px;

        min-height: auto;

        border-radius:
            var(--radius-lg);

    }


    .right-panel {

        min-height: auto;

        padding: 35px;

    }


    .login-card {

        max-width: 500px;

        margin: 0 auto;

    }


    .mobile-brand {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        margin-bottom: 30px;

        text-align: center;

    }


    .mobile-brand .brand-logo {

        justify-content: center;

    }


    .mobile-brand .brand-tagline {

        margin-top: 10px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .login-wrapper {

        padding: 0;

        align-items: stretch;

    }


    .login-container {

        width: 100%;

        max-width: none;

        min-height: 100vh;

        border: 0;

        border-radius: 0;

        background:
            rgba(5,5,5,0.94);

        box-shadow: none;

    }


    .right-panel {

        min-height: 100vh;

        padding:
            35px 20px;

        align-items: center;

    }


    .login-card {

        width: 100%;

        max-width: 450px;

        padding:
            32px 22px;

        border-radius:
            20px;

    }


    .mobile-brand {

        margin-bottom: 25px;

    }


    .mobile-brand .brand-mark {

        width: 50px;

        height: 50px;

        border-radius: 14px;

    }


    .mobile-brand .brand-b {

        font-size: 26px;

    }


    .mobile-brand .brand-name {

        font-size: 21px;

        letter-spacing: 3px;

    }


    .login-header {

        margin-bottom: 28px;

    }


    .login-header h2 {

        font-size: 25px;

    }


    .login-icon {

        width: 58px;

        height: 58px;

        margin-bottom: 15px;

    }


    .form-control {

        height: 52px;

    }


    .btn-login {

        height: 52px;

    }


    .security-note {

        padding: 12px;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .right-panel {

        padding:
            25px 14px;

    }


    .login-card {

        padding:
            28px 17px;

    }


    .mobile-brand {

        margin-bottom: 20px;

    }


    .brand-logo {

        gap: 10px;

    }


    .mobile-brand .brand-name {

        font-size: 19px;

    }


    .login-header h2 {

        font-size: 23px;

    }


    .login-header p {

        font-size: 12px;

    }


    .form-label {

        font-size: 11px;

    }


    .form-control {

        height: 50px;

        font-size: 12px;

    }


    .register-link {

        flex-wrap: wrap;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}


/* =========================================================
   HIGH CONTRAST / FOCUS
   ========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible {

    outline:
        2px solid
        var(--gold-light);

    outline-offset:
        3px;

}


/* =========================================================
   INVALID INPUT
   ========================================================= */

.form-control.input-error {

    border-color:
        rgba(255,80,95,0.65);

    box-shadow:
        0 0 0 3px
        rgba(255,80,95,0.07);

}


/* =========================================================
   SUCCESS INPUT
   ========================================================= */

.form-control.input-success {

    border-color:
        rgba(212,175,55,0.55);

}


/* =========================================================
   HIDDEN UTILITY
   ========================================================= */

.hidden {

    display: none !important;

}

```css
/* =========================================================
   BULLTRADE LOGIN
   CENTERED + FULLY RESPONSIVE OVERRIDE
   ========================================================= */


/* =========================================================
   PAGE FOUNDATION
   ========================================================= */

html,
body {

    width: 100%;

    min-width: 320px;

    min-height: 100%;

    margin: 0;

    padding: 0;

}


body {

    min-height: 100vh;

    overflow-x: hidden;

    font-family:
        'Poppins',
        sans-serif;

    background:
        #050505;

}


/* =========================================================
   FORM
   ========================================================= */

#form1 {

    width: 100%;

    min-height: 100vh;

    margin: 0;

    padding: 0;

}


/* =========================================================
   BACKGROUND
   ========================================================= */

.bg-animation {

    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;

}


/* =========================================================
   CENTER LOGIN WRAPPER
   ========================================================= */

.login-wrapper {

    position: relative;

    z-index: 10;

    width: 100%;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px 20px;

    box-sizing: border-box;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.login-container {

    position: relative;

    width: 100%;

    max-width: 520px;

    min-height: auto;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   PANEL
   ========================================================= */

.right-panel {

    width: 100%;

    min-height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    background: transparent;

}


/* =========================================================
   LOGIN CARD
   ========================================================= */

.login-card {

    position: relative;

    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    padding: 42px 40px;

    box-sizing: border-box;

    border-radius: 22px;

    border:
        1px solid
        rgba(212,175,55,0.14);

    background:

        linear-gradient(
            145deg,
            rgba(20,20,20,0.97),
            rgba(8,8,8,0.97)
        );

    box-shadow:

        0 35px 90px
        rgba(0,0,0,0.65),

        0 0 50px
        rgba(212,175,55,0.035);

}


/* =========================================================
   BRAND
   ========================================================= */

.mobile-brand {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    text-align: center;

}


.mobile-brand .brand-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


.mobile-brand .brand-mark {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:

        linear-gradient(
            145deg,
            #F5D76E,
            #D4AF37,
            #A67C00
        );

    box-shadow:

        0 10px 30px
        rgba(212,175,55,0.16);

}


.mobile-brand .brand-b {

    color: #050505;

    font-size: 25px;

    font-weight: 800;

}


.mobile-brand .brand-name {

    display: flex;

    align-items: baseline;

    gap: 3px;

    color: #FFFFFF;

    font-size: 22px;

    font-weight: 300;

    letter-spacing: 3px;

}


.mobile-brand .brand-name strong {

    color: #FFFFFF;

    font-weight: 800;

}


.mobile-brand .brand-name span {

    color: #D4AF37;

    font-weight: 500;

}


.mobile-brand .brand-tagline {

    margin-top: 8px;

    color: #666666;

    font-size: 9px;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


/* =========================================================
   HEADER
   ========================================================= */

.login-header {

    text-align: center;

    margin-bottom: 30px;

}


.login-header .login-icon {

    margin-left: auto;

    margin-right: auto;

}


.login-header h2 {

    margin-bottom: 7px;

}


.login-header p {

    margin-bottom: 0;

}


/* =========================================================
   FORM
   ========================================================= */

.form-group {

    width: 100%;

    margin-bottom: 20px;

}


.input-wrapper {

    position: relative;

    width: 100%;

}


.form-control {

    width: 100%;

    box-sizing: border-box;

}


/* =========================================================
   OPTIONS
   ========================================================= */

.login-options {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 4px;

    margin-bottom: 22px;

}


/* =========================================================
   BUTTON
   ========================================================= */

.login-button-wrapper {

    width: 100%;

}


.btn-login {

    width: 100%;

    min-height: 52px;

}


/* =========================================================
   DIVIDER
   ========================================================= */

.divider {

    width: 100%;

}


/* =========================================================
   SECURITY
   ========================================================= */

.security-note {

    width: 100%;

    box-sizing: border-box;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 767.98px) {

    .login-wrapper {

        padding:
            30px 18px;

    }


    .login-container {

        max-width: 500px;

    }


    .login-card {

        max-width: 100%;

        padding:
            36px 30px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .login-wrapper {

        min-height: 100svh;

        padding:
            20px 14px;

        align-items: center;

    }


    .login-container {

        width: 100%;

        max-width: 450px;

    }


    .right-panel {

        width: 100%;

    }


    .login-card {

        width: 100%;

        max-width: none;

        padding:
            30px 20px;

        border-radius:
            18px;

    }


    .mobile-brand {

        margin-bottom: 20px;

    }


    .login-header {

        margin-bottom: 25px;

    }


    .login-header h2 {

        font-size: 24px;

    }


    .login-options {

        align-items: flex-start;

    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .login-wrapper {

        padding:
            15px 10px;

    }


    .login-card {

        padding:
            26px 16px;

        border-radius:
            16px;

    }


    .mobile-brand .brand-mark {

        width: 43px;

        height: 43px;

    }


    .mobile-brand .brand-name {

        font-size: 19px;

    }


    .login-header h2 {

        font-size: 22px;

    }


    .login-header p {

        font-size: 11px;

    }


    .login-options {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }


    .btn-login {

        min-height: 50px;

    }

}


/* =========================================================
   VERY SMALL HEIGHT DEVICES
   ========================================================= */

@media (max-height: 650px) {

    .login-wrapper {

        align-items: flex-start;

        padding-top: 20px;

        padding-bottom: 20px;

    }


    .mobile-brand {

        margin-bottom: 15px;

    }


    .login-card {

        padding-top: 25px;

        padding-bottom: 25px;

    }


    .login-header {

        margin-bottom: 20px;

    }


    .form-group {

        margin-bottom: 15px;

    }

}


/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 767.98px)
       and (orientation: landscape) {

    .login-wrapper {

        align-items: flex-start;

        padding:
            20px 15px;

    }


    .login-container {

        max-width: 500px;

    }


    .mobile-brand {

        margin-bottom: 15px;

    }


    .login-card {

        padding:
            25px 30px;

    }

}


/* =========================================================
   LARGE SCREENS
   ========================================================= */

@media (min-width: 1200px) {

    .login-container {

        max-width: 540px;

    }


    .login-card {

        max-width: 520px;

        padding:
            46px 44px;

    }

}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
   ========================================================= */

*,
*::before,
*::after {

    max-width: 100%;

}


img,
svg {

    max-width: 100%;

    height: auto;

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .login-card {

        transform: none !important;

    }

}


/* =========================================================
   FINAL CENTERING
   ========================================================= */

.login-wrapper,
.login-container,
.right-panel {

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   END LOGIN.CSS
   ========================================================= */