* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #1e293b;
}

.login-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
}


/* =========================
   LEFT BRANDING SECTION
========================= */

.login-branding {
    width: 50%;
    min-height: 100vh;
    padding: 70px;
    position: relative;

    display: flex;
    align-items: center;

    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #ffffff;
}

.brand-content {
    max-width: 520px;
}

.brand-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 30px;
    font-weight: bold;
}

.brand-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.brand-content > p {
    max-width: 470px;

    font-size: 17px;
    line-height: 1.8;

    color: #cbd5e1;

    margin-bottom: 45px;
}


/* Features */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 15px;

    color: #e2e8f0;
}

.feature-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    font-size: 14px;
    font-weight: bold;
}

.branding-footer {
    position: absolute;

    left: 70px;
    bottom: 35px;

    font-size: 13px;

    color: #94a3b8;
}


/* =========================
   RIGHT LOGIN SECTION
========================= */

.login-form-area {
    width: 50%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: #ffffff;
}

.login-card {
    width: 100%;
    max-width: 420px;
}


/* Login Header */

.login-header {
    margin-bottom: 35px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 10px;
}

.login-header p {
    font-size: 15px;

    color: #64748b;
}


/* Form */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 8px;

    color: #334155;
}

.form-group input {
    width: 100%;
    height: 52px;

    padding: 0 16px;

    border: 1px solid #dbe2ea;
    border-radius: 10px;

    outline: none;

    font-size: 15px;

    color: #1e293b;

    transition: 0.2s;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    border-color: #2563eb;

    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}


/* Options */

.form-options {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #64748b;

    cursor: pointer;
}

.remember-me input {
    width: 16px;
    height: 16px;

    cursor: pointer;
}

.forgot-password {
    color: #2563eb;

    text-decoration: none;

    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}


/* Login Button */

.login-btn {
    width: 100%;
    height: 52px;

    border: none;
    border-radius: 10px;

    background: #2563eb;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.2s;
}

.login-btn:hover {
    background: #1d4ed8;
}


/* Footer */

.login-footer {
    text-align: center;

    margin-top: 30px;
}

.login-footer p {
    font-size: 13px;

    color: #94a3b8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .login-branding {
        padding: 50px;
    }

    .brand-content h1 {
        font-size: 38px;
    }

    .branding-footer {
        left: 50px;
    }

}


@media (max-width: 768px) {

    .login-page {
        display: block;
    }

    .login-branding {
        display: none;
    }

    .login-form-area {
        width: 100%;
        min-height: 100vh;

        padding: 25px;
    }

}


@media (max-width: 480px) {

    .login-header h2 {
        font-size: 28px;
    }

    .form-options {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;
    }

}