﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI";
}

/* BACKGROUND */
body {
    height: 100vh;
    display: flex;
    background-size: cover;
    background-position: center;
    transition: background-image 1s;
    position: relative;
}

    body::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(11,31,42,0.72);
    }

/* LEFT PANEL */
.left-panel {
    width: 60%;
    padding: 70px;
    color: white;
    z-index: 2;
}

    .left-panel h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .left-panel p {
        font-size: 15px;
        margin-bottom: 20px;
        opacity: 0.9;
    }

/* FEATURES */
.features li {
    list-style: none;
    margin-bottom: 8px;
}

    .features li::before {
        content: "✔ ";
        color: #0f9b8e;
    }

/* DASHBOARD */
.dashboard {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    font-size: 14px;
}

    .dashboard p {
        margin-bottom: 6px;
    }

/* RIGHT */
.right-panel {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.login-container {
    width: 360px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

    .logo img {
        height: 45px;
        object-fit: contain;
    }

/* FORM */
input, select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #0f9b8e;
    color: white;
    cursor: pointer;
}

/* CAPTCHA */
.captcha-box {
    margin-bottom: 10px;
    font-size: 13px;
}

/* STEP */
#step2 {
    display: none;
}

@media(max-width:900px) {
    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
    }
}

 
