/* input(361,1): run-time error CSS1019: Unexpected token, found '@' */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #0f0f0f;
    position: relative;
}

/* Split Screen Background */
.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Side - Image with Overlay */
.left-side {
    flex: 1;
    position: relative;
    /*background: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?q=80&w=2070') center/cover no-repeat;*/
    /*background: url('https://i.pinimg.com/736x/c5/76/b1/c576b1ebf8233fe7d910d24e6983146c.jpg') center/cover no-repeat;*/
    background: url('/images/sportage-new.png?v=mFQN_idkLTIddU6vPLSYbSjy4v0') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .left-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(205, 50, 80, 0.85) 0%, rgba(10, 22, 40, 0.95) 100%);
    }

.left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    color: white;
}

    .left-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    .left-content p {
        font-size: 18px;
        opacity: 0.9;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.6;
    }

.brand-logo-left {
    margin-bottom: 40px;
}

    /*.brand-logo-left img {
        height: 100px;
        filter: brightness(0) invert(1) drop-shadow(0 5px 20px rgba(255, 255, 255, 0.3));
    }*/

/* Right Side - Login Form */
.right-side {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .right-side::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(205, 50, 80, 0.15) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Login Box */
.login-form-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    padding: 40px 40px;
}

.form-logo {
    text-align: center;
}

.login-form-container img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 20px auto;
}

@media (min-width: 1200px) {
    .login-form-container img {
        max-width: 380px;
    }
}

.portal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

.welcome-text {
    text-align: center;
    margin-bottom: 35px;
}

    .welcome-text h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .welcome-text p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
    }

/* Form Styling */
.modern-form-group {
    margin-bottom: 25px;
    position: relative;
}

.modern-label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-input-wrapper {
    position: relative;
}

.modern-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .modern-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.08);
        border-color: #CD3250;
        box-shadow: 0 0 0 4px rgba(205, 50, 80, 0.1);
    }

    .modern-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    font-size: 18px;
    transition: color 0.3s;
}

.modern-input:focus ~ .input-icon {
    color: #CD3250;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

    .toggle-password:hover {
        color: #CD3250;
    }

/* Remember & Forgot */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-check {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
}

    .remember-check input {
        margin-right: 10px;
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #CD3250;
    }

.forgot-password-link {
    color: #CD3250;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

    .forgot-password-link:hover {
        color: #ff4d6d;
        transform: translateX(-3px);
    }

/* Login Button */
.modern-login-btn {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #CD3250 0%, #ff4d6d 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(205, 50, 80, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 1.1s both;
}

    .modern-login-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .modern-login-btn:hover::before {
        width: 300px;
        height: 300px;
    }
    /* .modern-login-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 32px rgba(205, 50, 80, 0.5);
            }

            .modern-login-btn:active {
                transform: translateY(-1px);
            } */

    .modern-login-btn:disabled {
        background: #555;
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

/* Footer */
.login-footer {
    text-align: center;
    margin-top: 20px;
}

    .login-footer p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 11px;
        margin-bottom: 8px;
    }

.powered-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

    .powered-text strong {
        color: rgba(255, 255, 255, 0.6);
    }

/* Alert */
.modern-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    animation: slideDown 0.4s ease-out;
}

.modern-alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b6b;
}

@@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling */
.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
}

.modal-header {
    background: linear-gradient(135deg, #CD3250 0%, #ff4d6d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
}

.modal-body {
    padding: 30px;
}

    .modal-body .form-label {
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .modal-body .form-control {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 14px 18px;
        border-radius: 10px;
    }

        .modal-body .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: #CD3250;
            box-shadow: 0 0 0 4px rgba(205, 50, 80, 0.1);
        }

.btn-modal-action {
    background: linear-gradient(135deg, #CD3250 0%, #ff4d6d 100%) !important;
    border: none !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-modal-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(205, 50, 80, 0.4);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
    }

    .left-side {
        display: none;
    }

    .right-side {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .login-form-container {
        padding: 30px 25px;
    }

    .welcome-text h2 {
        font-size: 26px;
    }
}
