/* FULL PAGE BACKGROUND */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-custom-fill);
}

/* CENTER WRAPPER */
.login-container {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

/* LOGO */
.login-brand__logo {
    width: 180px;
    height: auto;
}

/* HEADING */
.login-heading h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.login-heading p {
    font-size: 14px;
    color: var(--bs-secondary);
    margin-bottom: 2rem;
}

/* CARD */
.login-card {
    background: var(--bs-custom-white-dark);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

/* INPUT */
.form-control {
    border-radius: 8px;
}

/* LABELS */
.login-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* INPUT WRAPPER */
.input-with-icon {
    position: relative;
}

/* INPUT PADDING */
.input-with-icon .form-control {
    padding-left: 42px;
    padding-right: 42px;
}

/* LEFT ICON */
.input-icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bs-custom-text-weak);
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
}

/* RIGHT ICON */
.input-icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--bs-custom-text-weak);
    font-size: 15px;
    z-index: 2;
}

/* Login / Redeem Button */
.login-form .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 46px;

    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 500;
    text-align: center;
}

/* REMEMBER ME ROW */
.remember-row {
    margin-top: 6px;
}

.remember-row .form-check-label {
    margin: 0;
    font-weight: 400;
}

.remember-row a {
    font-size: 14px;
}


.login-page.appsumo-page {
    align-items: flex-start;
    padding: 40px 0;
}


