﻿

body {
    margin: 0;
    font-family: Poppins,sans-serif;
    background: #f6f7fb;
}

.login-page {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
}

.login-left {
    position: relative;
    background: url('/images/login/login-bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: #fff;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,20,32,.82), rgba(14,20,32,.45));
}

.brand,
.intro {
    position: relative;
    z-index: 2;
}

    .brand h1 {
        font-size: 42px;
        letter-spacing: 6px;
    }
        .brand h1 img {
            width: 200px;
            height: auto;
            max-height: 65px;
            object-fit: contain;
            display: block;
        }
    .brand span {
        color: #d6d6d6;
    }

.intro {
    max-width: 500px;
}

    .intro h2 {
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .intro p {
        color: #d2d6dc;
        line-height: 1.8;
    }

.login-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-card {
    width: 430px;
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.login-badge {
    background: #C8A46A20;
    color: #C8A46A;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
}

.login-card h3 {
    margin-top: 25px;
    font-size: 34px;
    font-weight: 700;
}

.form-control {
    height: 56px;
    border-radius: 14px;
}

.btn-login {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #C8A46A;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

    .btn-login:hover {
        background: #b08d57;
    }

@media(max-width:992px) {

    .login-page {
        grid-template-columns: 1fr;
    }

    .login-left {
        display: none;
    }
}
