﻿/* ==========================================================
   AssetVista Login Page
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Inter',sans-serif;
    background: #F4F7FC;
}

body {
    overflow: hidden;
}

/* ===============================
   Layout
=================================*/

.login-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* ===============================
   Left Side
=================================*/

.login-left {
    width: 55%;
    background: linear-gradient(135deg,#0F172A,#2563EB);
    color: #fff;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .login-left::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -180px;
        right: -180px;
    }

    .login-left::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        bottom: -120px;
        left: -120px;
    }

.brand {
    position: relative;
    z-index: 2;
}

    .brand h1 {
        font-size: 54px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .brand p {
        font-size: 22px;
        opacity: .9;
        margin-bottom: 60px;
    }

/* ===============================
   Features
=================================*/

.features {
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    font-size: 20px;
}

    .feature i {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        background: rgba(255,255,255,.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

/* ===============================
   Right Side
=================================*/

.login-right {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* ===============================
   Login Card
=================================*/

.login-card {
    width: 100%;
    max-width: 470px;
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(15,23,42,.08);
}

    .login-card h2 {
        font-size: 34px;
        margin-bottom: 8px;
        color: #0F172A;
    }

    .login-card p {
        color: #64748B;
        margin-bottom: 30px;
    }

/* ===============================
   Form
=================================*/

label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    height: 54px;
    border-radius: 12px;
    border: 1px solid #D9E2EC;
    box-shadow: none;
}

    .form-control:focus {
        border-color: #2563EB;
        box-shadow: 0 0 0 .15rem rgba(37,99,235,.15);
    }

.btn-primary {
    height: 54px;
    border: none;
    border-radius: 12px;
    background: #2563EB;
    font-weight: 600;
    transition: .3s;
}

    .btn-primary:hover {
        background: #1D4ED8;
        transform: translateY(-2px);
    }

/* ===============================
   Remember
=================================*/

a {
    text-decoration: none;
}

.version {
    text-align: center;
    margin-top: 30px;
    color: #94A3B8;
    font-size: 14px;
}

/* ===============================
   Responsive
=================================*/

@media(max-width:992px) {

    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
        padding: 30px;
    }

    .login-card {
        max-width: 500px;
    }
}

@media(max-width:576px) {

    .login-right {
        padding: 20px;
    }

    .login-card {
        padding: 30px 25px;
    }

        .login-card h2 {
            font-size: 28px;
        }

    .form-control {
        height: 50px;
    }

    .btn-primary {
        height: 50px;
    }
}
.copyright {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #94A3B8;
}