* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f1f5f9;
}

/* WRAPPER */
.login-wrapper {
    display: flex;
    min-height: 100vh;
}

/* LEFT PANEL */
.login-left {
    flex: 1;
    background: linear-gradient(135deg, #1E293B, #1E293B);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.brand-box h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.brand-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.features div {
    margin-bottom: 12px;
    font-size: 15px;
}

.features i {
    margin-right: 8px;
}

/* RIGHT PANEL */
.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.login-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.login-card h3 {
    font-weight: 600;
}

/* INPUT ICON */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #64748b;
}

.input-icon input {
    padding-left: 40px;
    height: 45px;
    border-radius: 10px;
}

/* BUTTON */
.btn-primary {
    background: #1E293B;
    border: none;
    height: 45px;
    border-radius: 10px;
}

.btn-primary:hover {
    background: #1e40af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-left {
        display: none;
    }

    .login-right {
        flex: 1;
    }
}
