﻿body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Background Wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('../img/bg/login_BG.jpg') center center / cover no-repeat;
}

    /* Light classy overlay */
    .page-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.90);
        backdrop-filter: blur(3px);
        z-index: 0;
    }

/* Centered Card */
.login-container {
    position: relative;
    z-index: 1;
    width: 950px;
    max-width: 95%;
    height: 520px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    display: flex;
}

/* LEFT RED PANEL */
.brand-section {
    width: 40%;
    background: linear-gradient(135deg, #e31e24, #c7181e);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

    .brand-section h2 {
        font-weight: 700;
        font-size: 32px;
    }

    .brand-section p {
        margin-top: 15px;
        font-size: 14px;
        opacity: .9;
    }

/* RIGHT FORM */
.form-section {
    width: 60%;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-logo {
    text-align: center;
    margin-bottom: 20px;
}

    .form-logo img {
        width: 150px;
    }

.form-title {
    font-weight: 600;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

    .form-control:focus {
        border-color: #e31e24;
        box-shadow: 0 0 0 0.15rem rgba(227,30,36,0.15);
    }

.btn-login {
    height: 48px;
    background: #e31e24;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    transition: .2s ease;
}

    .btn-login:hover {
        background: #c7181e;
    }

/* Responsive */
@media(max-width:992px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }

    .brand-section,
    .form-section {
        width: 100%;
    }

    .form-logo {
        text-align: center;
    }
}
