* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    background: #ffffff;
    overflow: hidden;
}

/* LEFT PANEL */

.left {
    width: 55%;
    background: linear-gradient(135deg, #063F54, #0B5B73);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px;
    position: relative;
}

/* header */

.header-small {
    position: absolute;
    top: 40px;
    left: 60px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: .9;
}

/* headline */

.welcome {
    font-size: 26px;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

/* AI DOCUMENT VAULT */

.ai-area {
    position: relative;
    width: 320px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* vault frame */

.vault {
    width: 230px;
    height: 160px;
    border: 2px solid rgba(245, 179, 0, .5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* glowing center */

.brand-box {
    width: 190px;
    height: 120px;
    background: #F5B300;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(245, 179, 0, .6);
}

.brand-box img {
    width: 140px;
}

/* scanning line */

.scan {
    position: absolute;
    width: 200px;
    height: 2px;
    background: white;
    opacity: .6;
    animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
    0% {
        top: 50px;
    }

    50% {
        top: 110px;
    }

    100% {
        top: 50px;
    }
}

/* data particles */

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #F5B300;
    border-radius: 50%;
    opacity: .7;
    animation: flow 6s linear infinite;
}

.p1 {
    top: 10px;
    left: 20px;
}

.p2 {
    top: 40px;
    right: 20px;
}

.p3 {
    bottom: 30px;
    left: 40px;
}

.p4 {
    bottom: 10px;
    right: 30px;
}

@keyframes flow {

    0% {
        transform: translateY(0);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        transform: translateY(80px);
        opacity: 0;
    }

}

/* footer */

.footer {
    position: absolute;
    bottom: 35px;
    left: 60px;
    font-size: 14px;
    opacity: .9;
}

/* RIGHT PANEL */

.right {
    width: 45%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ABCL placeholder */

.abcl-logo {
    position: absolute;
    top: 35px;
    right: 60px;
    font-size: 18px;
    font-weight: 600;
    color: #063F54;
    display: flex;
    justify-content: flex-end;
    /* border: 2px dashed #063F54; */
    padding: 10px 18px;
    border-radius: 6px;
}

/* login card */

.login-card {
    width: 420px;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

/* login title */

.login-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #063F54;
    text-align: center;
}

/* button */

.login-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 500;
    background: #063F54;
    color: white;
    cursor: pointer;
    transition: .25s;
}

.login-btn:hover {
    background: #2C93A6;
}