    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    background: #000;
}

/* 3D Background */
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating 3D Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FF0000, #990000);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #cc0000, #FF0000);
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #990000, #FF0000);
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    bottom: 30%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Login Container */
.login-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Split Screen Layout for Large Screens */
@media (min-width: 992px) {
    .login-container {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px;
    }
}

@media (min-width: 1400px) {
    .login-container {
        max-width: 1600px;
    }
}

/* Showoff Section */
.showoff-section {
    display: none;
}

@media (min-width: 992px) {
    .showoff-section {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a0000 0%, #330000 30%, #660000 60%, #990000 100%);
        position: relative;
        overflow: hidden;
        overflow: hidden;
        padding: 60px 40px;
        border-radius: 30px 0 0 30px;
        min-height: 580px;
        height: auto;
        width: 500px;
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.5),
            inset 0 0 100px rgba(255, 0, 0, 0.1);
        transform-style: preserve-3d;
        perspective: 1000px;
        perspective: 1000px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.showoff-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 100%;
}

.showoff-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 0, 0, 0.1);
    animation: showoffLogo3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

@keyframes showoffLogo3D {
    0%, 100% { 
        transform: translateY(0) rotateY(0deg) scale(1);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(255, 0, 0, 0.3);
    }
    25% { 
        transform: translateY(-15px) rotateY(10deg) scale(1.05);
        box-shadow: 
            0 25px 60px rgba(0, 0, 0, 0.6),
            0 0 80px rgba(255, 0, 0, 0.5);
    }
    50% { 
        transform: translateY(-20px) rotateY(0deg) scale(1.08);
        box-shadow: 
            0 30px 70px rgba(0, 0, 0, 0.7),
            0 0 100px rgba(255, 0, 0, 0.6);
    }
    75% { 
        transform: translateY(-15px) rotateY(-10deg) scale(1.05);
        box-shadow: 
            0 25px 60px rgba(0, 0, 0, 0.6),
            0 0 80px rgba(255, 0, 0, 0.5);
    }
}

.showoff-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.showoff-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.showoff-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

.showoff-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px 18px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: featureSlide3D 0.8s ease forwards;
    opacity: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 0, 0, 0.05);
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes featureSlide3D {
    from {
        opacity: 0;
        transform: translateY(30px) translateZ(-50px) rotateX(-15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0) rotateX(0deg);
    }
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) translateZ(20px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

/* Moving Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    opacity: 0.7;
    animation: rise3D 15s infinite ease-in;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 0, 0, 0.3);
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.4), rgba(139, 0, 0, 0.6));
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    background: radial-gradient(circle at 30% 30%, rgba(220, 0, 0, 0.4), rgba(100, 0, 0, 0.6));
    animation-duration: 14s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 35%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 50, 50, 0.4), rgba(139, 0, 0, 0.7));
    animation-duration: 16s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(200, 0, 0, 0.4), rgba(80, 0, 0, 0.6));
    animation-duration: 13s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 65%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 20, 20, 0.4), rgba(120, 0, 0, 0.6));
    animation-duration: 15s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 75%;
    background: radial-gradient(circle at 30% 30%, rgba(180, 0, 0, 0.4), rgba(90, 0, 0, 0.6));
    animation-duration: 11s;
    animation-delay: 1s;
}

.bubble:nth-child(7) {
    width: 110px;
    height: 110px;
    left: 85%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 30, 30, 0.5), rgba(139, 0, 0, 0.7));
    animation-duration: 17s;
    animation-delay: 5s;
}

.bubble:nth-child(8) {
    width: 65px;
    height: 65px;
    left: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(210, 0, 0, 0.4), rgba(100, 0, 0, 0.6));
    animation-duration: 14s;
    animation-delay: 6s;
}

.bubble:nth-child(9) {
    width: 85px;
    height: 85px;
    left: 45%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 40, 40, 0.4), rgba(130, 0, 0, 0.6));
    animation-duration: 13s;
    animation-delay: 2s;
}

.bubble:nth-child(10) {
    width: 75px;
    height: 75px;
    left: 90%;
    background: radial-gradient(circle at 30% 30%, rgba(190, 0, 0, 0.4), rgba(110, 0, 0, 0.6));
    animation-duration: 16s;
    animation-delay: 4s;
}

@keyframes rise3D {
    0% {
        bottom: -100px;
        transform: translateX(0) translateZ(0) scale(1);
        opacity: 0.7;
        box-shadow: 
            0 0 20px rgba(255, 0, 0, 0.5),
            inset 0 0 20px rgba(255, 0, 0, 0.3);
    }
    25% {
        transform: translateX(50px) translateZ(30px) scale(1.1);
        opacity: 0.6;
        box-shadow: 
            0 0 30px rgba(255, 0, 0, 0.6),
            inset 0 0 30px rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: translateX(100px) translateZ(50px) scale(1.15);
        opacity: 0.5;
        box-shadow: 
            0 0 40px rgba(255, 0, 0, 0.7),
            inset 0 0 40px rgba(255, 0, 0, 0.5);
    }
    75% {
        transform: translateX(50px) translateZ(30px) scale(1.1);
        opacity: 0.4;
        box-shadow: 
            0 0 30px rgba(255, 0, 0, 0.6),
            inset 0 0 30px rgba(255, 0, 0, 0.4);
    }
    100% {
        bottom: 110%;
        transform: translateX(-100px) translateZ(0) scale(0.8);
        opacity: 0;
        box-shadow: 
            0 0 20px rgba(255, 0, 0, 0.5),
            inset 0 0 20px rgba(255, 0, 0, 0.3);
    }
}

/* Login Form Section */
.login-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

@media (min-width: 992px) {
    .login-form-section {
        background: white;
        padding: 0;
        border-radius: 0 30px 30px 0;
        min-height: 580px;
        height: auto;
        width: 550px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}

/* Login Card with 3D Effect */
.login-card {
    perspective: 1500px;
    animation: cardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.login-card-inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 992px) {
    .login-card-inner {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        width: 100%;
        max-width: 400px;
        border-radius: 0;
        padding: 0;
        border: none;
        transform: none;
        margin: auto;
    }
    
    .login-card {
        width: 100%;
        max-width: 100%;
        transform: none !important;
        perspective: none !important;
        animation: none !important;
    }

    .login-card-inner:hover {
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .form-title { color: #2c3e50; }
    .form-subtitle { color: #6c757d; }
    .input-icon i { color: #6c757d; }
    
    .modern-input {
        background: #f8f9fa;
        border-color: #e9ecef;
        color: #2c3e50;
    }

    .modern-input:focus {
        background: white;
        border-color: #ff0000;
        box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    }

    .floating-label {
        color: #6c757d;
    }
    
    .modern-input:focus ~ .floating-label,
    .modern-input:not(:placeholder-shown) ~ .floating-label {
        background: white; 
        color: #ff0000;
        padding: 0 5px;
    }

    .custom-checkbox .label-text { color: #2c3e50; }
    .forgot-link { color: #FF0000; }
    .forgot-link:hover { color: #cc0000; }
    
    .divider span {
        background: white;
        color: #6c757d;
    }
    .divider::before { background: linear-gradient(90deg, transparent, #e9ecef, transparent); }
    
    .register-link p { color: #6c757d; }
    .toggle-password { color: #6c757d; }
    
    .login-card {
        animation: none !important;
        transform: none !important;
    }
}

/* Large Desktop - Extra Wide */
@media (min-width: 1400px) {
    .login-card-inner {
        max-width: 650px;
        padding: 65px 70px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .modern-input {
        padding: 18px 55px 18px 55px;
        font-size: 16px;
    }
    
    .login-btn {
        padding: 18px;
        font-size: 17px;
    }
}

/* Desktop - Wide */
@media (min-width: 1200px) and (max-width: 1399px) {
    .login-card-inner {
        max-width: 600px;
        padding: 60px 60px;
    }
    
    .form-title {
        font-size: 30px;
    }
    
    .modern-input {
        padding: 17px 52px 17px 52px;
        font-size: 15px;
    }
}

/* Laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .login-card-inner {
        max-width: 550px;
        padding: 55px 50px;
    }
}

.login-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(255, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Logo Section */
.login-logo {
    text-align: center;
    margin-bottom: 5px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image {
    width: 70px;
    height: 70px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 0, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover img {
    transform: scale(1.05);
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 10px 30px rgba(255, 0, 0, 0.3));
    }
    50% { 
        filter: drop-shadow(0 10px 40px rgba(255, 0, 0, 0.5));
    }
}

.brand-tagline {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

/* Form Styles */
.login-form {
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
    text-align: center;
}

.form-subtitle {
    font-size: 13px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 15px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-input {
    width: 100%;
    padding: 12px 42px 12px 42px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    height: 48px;
}

.modern-input:focus {
    border-color: #FF0000;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.modern-input:focus + .floating-label,
.modern-input:not(:placeholder-shown) + .floating-label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #FF0000;
    background: white;
    padding: 0 8px;
}

.modern-input:focus ~ .input-icon {
    color: #FF0000;
    transform: translateY(-50%) scale(1.1);
}

.floating-label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 15px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    background: #f8f9fa;
    color: #FF0000;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    margin-left: 4px;
    font-weight: 500;
}

/* Remember & Forgot */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.remember-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.remember-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.remember-checkbox input:checked ~ .checkmark {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    border-color: #FF0000;
}

.remember-checkbox input:checked ~ .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.label-text {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.forgot-link {
    font-size: 14px;
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* Login Button with 3D Effect */
.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.login-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.login-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover .btn-shine {
    left: 100%;
}

/* Success Alert */
.success-alert {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 12px 16px;
    color: #155724;
    font-size: 14px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.5s ease;
}

/* Warning Alert */
.warning-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 12px 16px;
    color: #856404;
    font-size: 14px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: slideIn 0.5s ease;
}

/* Error Alert */
.error-alert {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 12px;
    padding: 12px 16px;
    color: #c33;
    font-size: 14px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes slideIn {
    0% { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 15px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.divider span {
    position: relative;
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
}

/* Register Link */
.register-link {
    text-align: center;
    margin-bottom: 20px;
}

.register-link p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.create-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.create-account-btn:hover {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    border-color: #FF0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* Back to Home */
.back-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: #FF0000;
}

/* Responsive */
/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .login-card-inner {
        max-width: 520px;
        padding: 50px 40px;
    }
}

/* Mobile Landscape & Small Tablet */
@media (min-width: 577px) and (max-width: 767px) {
    .login-card-inner {
        max-width: 480px;
        padding: 45px 35px;
    }
    
    .logo-image {
        width: 110px;
        height: 110px;
    }
    
    .brand-tagline {
        font-size: 14px;
    }
    
    .form-title {
        font-size: 26px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .login-container {
        padding: 10px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .login-card-inner {
        padding: 25px 20px;
        border-radius: 20px;
        max-width: 100%;
    }
    
    .login-logo {
        margin-bottom: 20px;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }
    
    .brand-tagline {
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .login-form {
        margin-bottom: 20px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .form-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .input-wrapper {
        margin-bottom: 15px;
    }
    
    .modern-input {
        padding: 12px 42px 12px 42px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .input-icon {
        font-size: 15px;
        left: 14px;
    }
    
    .toggle-password {
        right: 10px;
        font-size: 15px;
        padding: 6px;
    }
    
    .floating-label {
        font-size: 14px;
    }
    
    .remember-forgot {
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .label-text, .forgot-link {
        font-size: 12px;
    }
    
    .login-btn {
        padding: 12px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .error-alert {
        padding: 10px 12px;
        font-size: 12px;
        margin-top: 12px;
    }
    
    .divider {
        margin: 20px 0;
    }
    
    .divider span {
        font-size: 12px;
        padding: 0 12px;
    }
    
    .register-link {
        margin-bottom: 15px;
    }
    
    .register-link p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .create-account-btn {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .back-home {
        font-size: 12px;
    }
    
    .shape {
        filter: blur(40px);
        opacity: 0.2;
    }
}

/* Unverified Modal Styles */
.modern-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.modern-modal-overlay.show {
    opacity: 1;
}

.modern-modal-overlay.show .modern-modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modern-modal-container {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
    max-width: 520px;
}

.modern-modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #dc3545;
    transform: scale(1.1);
}

.unverified-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.clock-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    animation: clockBounce 2s infinite;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.clock-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #ffc107;
    animation: pulse 2s infinite;
}

@keyframes clockBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.unverified-title {
    color: #ff9800;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.modern-modal-greeting {
    font-size: 15px;
    color: #495057;
    margin-bottom: 8px;
}

.modern-modal-message {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 14px;
}

.unverified-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
}

.detail-item small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item div div {
    font-weight: 600;
    color: #2c3e50;
    font-size: 13px;
    word-break: break-word;
}

.unverified-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px;
    border-radius: 8px;
    margin: 14px 0;
    text-align: left;
}

.unverified-info h6 {
    color: #856404;
    margin-bottom: 8px;
    font-size: 14px;
}

.unverified-info ul {
    margin: 0;
    padding-left: 18px;
    color: #856404;
    font-size: 13px;
    line-height: 1.6;
}

.unverified-info li {
    margin-bottom: 4px;
}

.unverified-contact {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 14px;
}

.unverified-contact small {
    font-size: 11px;
}

.unverified-contact > div {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.contact-link {
    color: #FF0000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

.modern-btn-unverified-close {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-btn-unverified-close:hover {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Mobile Responsive for Modal */
@media (max-width: 576px) {
    .unverified-details {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
        margin: 12px 0;
    }
    
    .unverified-contact > div {
        flex-direction: column;
        gap: 6px;
    }
    
    .unverified-contact .mx-2 {
        display: none;
    }
}

@media (max-width: 375px) {
    .login-card-inner {
        padding: 20px 18px;
        border-radius: 18px;
    }
    
    .login-logo {
        margin-bottom: 18px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
        margin-bottom: 6px;
    }
    
    .brand-tagline {
        font-size: 11px;
    }
    
    .form-title {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .form-subtitle {
        font-size: 11px;
        margin-bottom: 18px;
    }
    
    .input-wrapper {
        margin-bottom: 12px;
    }
    
    .modern-input {
        padding: 11px 40px 11px 40px;
        font-size: 13px;
    }
    
    .input-icon {
        font-size: 14px;
        left: 12px;
    }
    
    .toggle-password {
        right: 8px;
        font-size: 14px;
    }
    
    .remember-forgot {
        margin-bottom: 12px;
    }
    
    .login-btn {
        padding: 11px;
        font-size: 13px;
    }
    
    .divider {
        margin: 18px 0;
    }
    
    .register-link {
        margin-bottom: 12px;
    }
    
    .create-account-btn {
        padding: 9px 16px;
        font-size: 11px;
    }
}