* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #17243d;
    background: #fafbfe;
}

button,
input {
    font-family: inherit;
}


/* =====================================================
   PAGE
   ===================================================== */

.qc-login-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(242, 150, 187, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 78%,
            rgba(242, 150, 187, 0.13),
            transparent 29%
        ),
        #fbfcfe;
}


/* =====================================================
   WRAPPER
   ===================================================== */

.qc-login-wrapper {
    width: 100%;
    max-width: 650px;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 55px 20px 35px;

    position: relative;
    z-index: 2;
}


/* =====================================================
   BRAND
   ===================================================== */


.qc-brand .quickcart-logo-image {
    width: 250px !important;
    height: auto !important;
    max-width: 250px !important;
    display: block !important;
     margin: 0 auto 25px !important;
}



/* =====================================================
   CARD
   ===================================================== */

.qc-card {
    width: 100%;
    max-width: 600px;

    background: #ffffff;

    border: 1px solid #e2e7ee;

    border-radius: 16px;

    padding: 45px 54px 38px;

    box-shadow:
        0 18px 50px rgba(35, 51, 75, 0.08),
        0 3px 10px rgba(35, 51, 75, 0.03);
}


/* =====================================================
   HEADER
   ===================================================== */

.qc-header {
    text-align: center;

    margin-bottom: 32px;
}

.qc-header h1 {
    margin: 0;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 700;

    color: #17243d;
}

.qc-header p {
    margin: 9px 0 0;

    font-size: 15px;

    color: #7d8ba1;
}


/* =====================================================
   ALERT
   ===================================================== */

.qc-alert {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 14px;

    margin-bottom: 20px;

    border-radius: 8px;

    font-size: 13px;
}

.qc-alert strong {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.qc-alert-error {
    background: #fff1f2;
    border: 1px solid #ffd4d8;
    color: #a52c38;
}

.qc-alert-success {
    background: #effaf2;
    border: 1px solid #cdebd5;
    color: #27733b;
}


/* =====================================================
   FORM
   ===================================================== */

.qc-form {
    width: 100%;
}

.qc-form-group {
    margin-bottom: 23px;
}

.qc-form-group label,
.qc-password-label label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #23324b;
}


/* =====================================================
   PASSWORD LABEL
   ===================================================== */

.qc-password-label {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 8px;
}

.qc-password-label label {
    margin-bottom: 0;
}

.qc-password-label a {
    font-size: 13px;

    color: #087fe5;

    text-decoration: none;
}

.qc-password-label a:hover {
    text-decoration: underline;
}


/* =====================================================
   INPUT
   ===================================================== */

.qc-input {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;

    border: 1px solid #d6deea;

    border-radius: 9px;

    background: #ffffff;

    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.qc-input:focus-within {
    border-color: #087fe5;

    box-shadow:
        0 0 0 3px rgba(8, 127, 229, 0.09);
}

.qc-input-symbol {
    width: 50px;

    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #7d8ba0;

    font-size: 21px;
    font-weight: 500;
}

.qc-input input {
    width: 100%;
    height: 100%;

    min-width: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #17243d;

    font-size: 15px;

    padding: 0 12px 0 0;
}

.qc-input input::placeholder {
    color: #9ba7b8;
}


/* =====================================================
   SHOW PASSWORD
   ===================================================== */

.qc-show-password {
    width: 55px;
    height: 100%;

    flex-shrink: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #748299;

    font-size: 13px;

    cursor: pointer;
}

.qc-show-password:hover {
    color: #087fe5;
}


/* =====================================================
   REMEMBER
   ===================================================== */

.qc-remember {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    font-size: 14px;

    color: #48566c;

    cursor: pointer;

    user-select: none;
}

.qc-remember input {
    width: 18px;
    height: 18px;

    margin: 0;

    accent-color: #087fe5;
}


/* =====================================================
   LOGIN BUTTON
   ===================================================== */

.qc-login-button {
    width: 100%;
    height: 54px;

    border: 0;
    border-radius: 9px;

    background: #087fe5;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(8, 127, 229, 0.18);

    transition:
        background .15s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

.qc-login-button:hover {
    background: #0673d0;

    transform: translateY(-1px);

    box-shadow:
        0 9px 23px rgba(8, 127, 229, 0.23);
}

.qc-login-button:active {
    transform: translateY(0);
}

.qc-login-button:disabled {
    opacity: .75;
    cursor: not-allowed;
}


/* =====================================================
   DIVIDER
   ===================================================== */

.qc-divider {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 16px;

    margin: 28px 0 23px;
}

.qc-divider span {
    flex: 1;

    height: 1px;

    background: #e1e6ec;
}

.qc-divider small {
    color: #8c98a9;

    font-size: 12px;
}


/* =====================================================
   SECURITY
   ===================================================== */

.qc-security {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    color: #7e8ba0;

    font-size: 13px;
}

.qc-lock {
    font-size: 14px;
}


/* =====================================================
   COPYRIGHT
   ===================================================== */

.qc-copyright {
    text-align: center;

    margin-top: 17px;

    font-size: 13px;

    color: #96a1b0;
}


/* =====================================================
   SLOGAN
   ===================================================== */

.qc-slogan {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    margin-top: 36px;

    color: #8b98ab;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 4px;

    white-space: nowrap;
}

.qc-slogan span {
    width: 38px;
    height: 1px;

    background: #ff7183;
}


/* =====================================================
   BACKGROUND CIRCLES
   ===================================================== */

.qc-bg-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.qc-bg-circle-left {
    width: 450px;
    height: 450px;

    top: -310px;
    left: -300px;

    border: 75px solid rgba(243, 155, 190, .10);
}

.qc-bg-circle-right {
    width: 470px;
    height: 470px;

    right: -320px;
    bottom: -320px;

    border: 75px solid rgba(243, 155, 190, .10);
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 650px) {

    .qc-login-wrapper {
        padding: 35px 15px 30px;
    }

    .qc-card {
        padding: 34px 25px 30px;
    }

    .qc-brand-name {
        font-size: 34px;
    }

    .qc-brand-icon {
        width: 44px;
        height: 38px;

        font-size: 22px;
    }

    .qc-brand-tagline {
        margin-left: 55px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .qc-header h1 {
        font-size: 23px;
    }

    .qc-header p {
        font-size: 13px;
    }

    .qc-slogan {
        font-size: 7px;
        letter-spacing: 2px;
        gap: 9px;
    }

    .qc-slogan span {
        width: 20px;
    }
}


@media (max-width: 400px) {

    .qc-card {
        padding: 28px 19px 27px;
    }

    .qc-brand {
        margin-bottom: 22px;
    }

    .qc-header h1 {
        font-size: 21px;
    }

    .qc-input {
        height: 50px;
    }

    .qc-login-button {
        height: 50px;
    }
}