/* ==============================
   BASIC RESET
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==============================
   BODY
================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #111;
}


/* ==============================
   MAIN CONTAINER
================================= */

.login-container {
    min-height: 100vh;
    display: flex;
}


/* ==============================
   LEFT BRAND SECTION
================================= */

.login-brand {
    width: 45%;
    min-height: 100vh;

    background: #111;

    color: white;

    padding: 45px;

    display: flex;
    flex-direction: column;

    position: relative;
}


/* ==============================
   LOGO
================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: 2px;
}

.logo-icon {
    font-size: 30px;
}


/* ==============================
   BRAND CONTENT
================================= */

.brand-content {
    margin: auto 0;
    max-width: 500px;
}

.brand-content h1 {
    font-size: 58px;
    line-height: 1.05;

    margin-bottom: 25px;
}

.brand-content p {
    font-size: 17px;
    line-height: 1.7;

    color: #bdbdbd;

    max-width: 430px;
}


/* ==============================
   BRAND FOOTER
================================= */

.brand-footer {
    color: #777;

    font-size: 13px;
}


/* ==============================
   RIGHT LOGIN SECTION
================================= */

.login-section {
    width: 55%;
    min-height: 100vh;

    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px;
}


/* ==============================
   LOGIN BOX
================================= */

.login-box {
    width: 100%;
    max-width: 440px;
}


/* ==============================
   MOBILE LOGO
================================= */

.mobile-logo {
    display: none;
}


/* ==============================
   WELCOME TEXT
================================= */

.welcome {
    color: #e53935;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


/* ==============================
   HEADING
================================= */

.login-box h2 {
    font-size: 38px;

    margin-bottom: 12px;
}

.login-description {
    color: #777;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 35px;
}


/* ==============================
   INPUT GROUP
================================= */

.input-group {
    margin-bottom: 22px;
}

.input-group label {
    display: block;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 9px;
}

.input-group input {
    width: 100%;

    height: 52px;

    padding: 0 16px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 15px;

    outline: none;

    transition: 0.3s;
}

.input-group input:focus {
    border-color: #111;

    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}


/* ==============================
   LOGIN OPTIONS
================================= */

.login-options {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin: 5px 0 25px;
}

.remember {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    color: #555;
}

.remember input {
    width: 15px;
    height: 15px;
}

.login-options a {
    color: #111;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}

.login-options a:hover {
    text-decoration: underline;
}


/* ==============================
   LOGIN BUTTON
================================= */

.login-btn {
    width: 100%;

    height: 54px;

    border: none;

    border-radius: 8px;

    background: #e53935;

    color: white;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    transition: 0.3s;
}

.login-btn:hover {
    background: #c62828;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.2);
}

.login-btn span {
    font-size: 20px;
}


/* ==============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 850px) {

    .login-brand {
        display: none;
    }

    .login-section {
        width: 100%;

        padding: 30px;
    }

    .mobile-logo {
        display: flex;

        align-items: center;

        gap: 10px;

        font-size: 22px;

        font-weight: 800;

        letter-spacing: 2px;

        margin-bottom: 50px;
    }
}


@media (max-width: 500px) {

    .login-section {
        padding: 25px 20px;
    }

    .login-box h2 {
        font-size: 32px;
    }

    .login-options {
        align-items: flex-start;

        gap: 15px;

        flex-direction: column;
    }
}