body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(0, 194, 255, .12), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 138, 0, .10), transparent 30%),
        #0B0F19;
    min-height: 100vh;
    overflow-x: hidden;
}

/* GLOW EFFECT */

.bg-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
    z-index: 0;
}

.glow-orange {
    background: #FF8A00;
    top: -120px;
    right: -120px;
}

.glow-blue {
    background: #00C2FF;
    bottom: -120px;
    left: -120px;
}

/* LOGIN */

.login-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    width: 100%;
    max-width: 1100px;
    border: none;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(18, 24, 38, .92);
    backdrop-filter: blur(14px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        0 0 0 1px rgba(255, 255, 255, .03);
}

/* LEFT */

.login-left {
    position: relative;
    min-height: 680px;
    background:
        linear-gradient(145deg,
            rgba(255, 138, 0, .12),
            rgba(0, 194, 255, .08));
}

.login-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 138, 0, .25), transparent 30%),
        radial-gradient(circle at bottom right, rgba(0, 194, 255, .18), transparent 35%);
}

.login-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
}

.scrapi-logo {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.scrapi-logo span {
    color: #FF8A00;
}

.robot-box {
    text-align: center;
}

.robot-box img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 194, 255, .2));
}

.welcome-box h2 {
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.welcome-box p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* RIGHT */

.login-right {
    background: rgba(11, 15, 25, .92);
    padding: 70px 55px;
    display: flex;
    align-items: center;
}

.login-form-wrapper {
    width: 100%;
}

.login-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 138, 0, .12);
    border: 1px solid rgba(255, 138, 0, .20);
    color: #FFB35C;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 25px;
    font-size: .9rem;
    font-weight: 600;
}

.login-form-wrapper h1 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.login-subtitle {
    color: rgba(255, 255, 255, .65);
    margin-bottom: 35px;
}

/* FORM */

.form-label {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: .92rem;
}

.form-control {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: white;
    border-radius: 16px;
    min-height: 58px;
    padding: 14px 18px;
    transition: .25s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, .08);
    border-color: #00C2FF;
    box-shadow: 0 0 0 4px rgba(0, 194, 255, .12);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .35);
}

.form-check-label {
    color: rgba(255, 255, 255, .70);
}

/* BUTTON */

.btn-login {
    height: 58px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #FF8A00, #FFB347);
    color: #111;
    font-weight: 700;
    transition: .25s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 138, 0, .30);
    color: #111;
}

/* LINKS */

.login-link {
    color: #00C2FF;
    text-decoration: none;
    font-weight: 500;
}

.login-link:hover {
    color: white;
}

.divider {
    border-color: rgba(255, 255, 255, .08);
    margin: 35px 0;
}

.support-text {
    color: rgba(255, 255, 255, .55);
    font-size: .92rem;
}

/* VALIDATION */

.invalid-feedback {
    color: #ff7b7b;
    font-size: .85rem;
    margin-top: 8px;
}

.is-invalid {
    border-color: #ff5b5b !important;
}

/* MOBILE */

@media(max-width:991px) {

    .login-left {
        display: none;
    }

    .login-right {
        padding: 50px 30px;
    }

    .login-form-wrapper h1 {
        font-size: 2rem;
    }

}

.form-control,
.form-control.is-valid,
.form-control.is-invalid {
    transition: none !important;
}