﻿/* ==========================================
   LOGIN PAGE
========================================== */

.login-page {
    position: relative;
    overflow: hidden;
    padding: 75px 0;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 15%, rgba(22,180,216,.13), transparent 28%), radial-gradient(circle at 92% 85%, rgba(245,130,32,.10), transparent 25%), #f5fafc;
}

    .login-page::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(8,124,196,.035) 1px, transparent 1px), linear-gradient(90deg,rgba(8,124,196,.035) 1px,transparent 1px);
        background-size: 40px 40px;
    }

    .login-page .container {
        position: relative;
        z-index: 2;
    }


/* ==========================================
   LOGIN SHELL
========================================== */

.login-shell {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    overflow: hidden;
    border: 1px solid #dce9ef;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(3,43,67,.13);
}


/* ==========================================
   LEFT PANEL
========================================== */

.login-welcome {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    padding: 48px 42px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(circle at 100% 0%, rgba(22,180,216,.40), transparent 35%), radial-gradient(circle at 20% 100%, rgba(245,130,32,.20), transparent 32%), linear-gradient(145deg,#032b43 0%,#07587d 55%,#087cc4 100%);
}

    .login-welcome::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        right: -180px;
        bottom: -160px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 50%;
    }

    .login-welcome::after {
        content: "";
        position: absolute;
        width: 210px;
        height: 210px;
        right: -115px;
        bottom: -105px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 50%;
    }

.login-welcome-content {
    position: relative;
    z-index: 2;
}

.login-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #9fe9f5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .login-kicker::before {
        content: "";
        width: 30px;
        height: 2px;
        background: #f58220;
    }

.login-welcome h1 {
    max-width: 390px;
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .login-welcome h1 span {
        display: block;
        color: #f7a54d;
    }

.login-welcome-content > p {
    max-width: 390px;
    margin: 19px 0 30px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.75;
}


/* Benefits */

.login-benefits {
    display: grid;
    gap: 12px;
}

.login-benefit {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 13px;
    background: rgba(255,255,255,.07);
}

.login-benefit-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(159,233,245,.14);
    color: #9fe9f5;
    font-size: 13px;
    font-weight: 900;
}

.login-benefit strong {
    display: block;
    color: #fff;
    font-size: 12px;
}

.login-benefit small {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.62);
    font-size: 10px;
    line-height: 1.45;
}

.login-welcome-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

    .login-welcome-bottom i {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #f58220;
    }


/* ==========================================
   RIGHT FORM
========================================== */

.login-form-side {
    display: flex;
    align-items: center;
    padding: 48px 55px;
    background: #fff;
}

.login-form-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-form-label {
    margin-bottom: 8px;
    color: #f58220;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.login-form-wrap h2 {
    margin: 0;
    color: #032b43;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.7px;
}

.login-form-intro {
    margin: 11px 0 27px;
    color: #000;
    font-size: 12px;
    line-height: 1.7;
}


/* ==========================================
   ALERT
========================================== */

.login-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid #f2c8c8;
    border-radius: 11px;
    background: #fff4f4;
}

.login-alert-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d94a4a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.login-alert strong {
    display: block;
    color: #a83232;
    font-size: 11px;
}

.login-alert span {
    display: block;
    margin-top: 2px;
    color: #7b3b3b;
    font-size: 11px;
}


/* ==========================================
   FORM FIELDS
========================================== */

.login-field {
    margin-bottom: 18px;
}

    .login-field label {
        display: block;
        margin-bottom: 7px;
        color: #032b43;
        font-size: 12px;
        font-weight: 800;
    }

.login-input {
    position: relative;
}

    .login-input > svg {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 15px;
        width: 19px;
        height: 19px;
        transform: translateY(-50%);
        color: #718791;
        pointer-events: none;
    }

    .login-input input {
        width: 100%;
        height: 52px;
        padding: 0 46px 0 45px;
        border: 1px solid #dbe7ed;
        border-radius: 11px;
        outline: 0;
        background: #f9fcfd;
        color: #032b43;
        font-size: 13px;
        transition: .2s ease;
    }

        .login-input input::placeholder {
            color: #8b9ba3;
        }

        .login-input input:focus {
            border-color: #16b4d8;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(22,180,216,.10);
        }


/* Password eye */

.password-toggle {
    position: absolute;
    top: 50%;
    right: 13px;
    width: 32px;
    height: 32px;
    padding: 6px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #687e88;
    cursor: pointer;
}

    .password-toggle svg {
        width: 100%;
        height: 100%;
    }


/* ==========================================
   LOGIN BUTTON
========================================== */

.login-submit {
    width: 100%;
    height: 52px;
    margin-top: 5px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 11px;
    background: #f58220;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(245,130,32,.22);
    transition: .2s ease;
}

    .login-submit:hover {
        background: #df7114;
        transform: translateY(-1px);
    }

    .login-submit:disabled {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
    }

.login-submit-arrow {
    font-size: 18px;
}


/* ==========================================
   REGISTER
========================================== */

.login-divider {
    position: relative;
    margin: 26px 0 18px;
    text-align: center;
}

    .login-divider::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: #e1eaee;
    }

    .login-divider span {
        position: relative;
        z-index: 1;
        padding: 0 12px;
        background: #fff;
        color: #71828b;
        font-size: 10px;
        font-weight: 700;
    }

.login-register {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcd8e5;
    border-radius: 11px;
    background: #f5fbfe;
    color: #087cc4;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

    .login-register:hover {
        border-color: #087cc4;
        background: #eef8ff;
        color: #075e97;
    }

.login-help {
    margin-top: 21px;
    color: #607680;
    font-size: 10px;
    text-align: center;
}

    .login-help a {
        color: #087cc4;
        font-weight: 800;
    }


/* ==========================================
   TABLET / MOBILE
========================================== */

@media (max-width: 991px) {

    .login-page {
        padding: 55px 0;
    }

    .login-shell {
        max-width: 650px;
        grid-template-columns: 1fr;
    }

    .login-welcome {
        min-height: auto;
        padding: 38px;
    }

        .login-welcome h1 {
            font-size: 37px;
        }

    .login-benefits {
        grid-template-columns: repeat(3,1fr);
    }

    .login-benefit {
        align-items: flex-start;
    }

    .login-welcome-bottom {
        margin-top: 28px;
    }
}


@media (max-width: 576px) {

    .login-page {
        min-height: auto;
        padding: 30px 0 55px;
    }

    .login-shell {
        border-radius: 20px;
    }

    .login-welcome {
        padding: 31px 22px;
    }

        .login-welcome h1 {
            font-size: 32px;
        }

    .login-welcome-content > p {
        margin-bottom: 22px;
    }

    .login-benefits {
        grid-template-columns: 1fr;
    }

    .login-welcome-bottom {
        display: none;
    }

    .login-form-side {
        padding: 35px 22px;
    }

    .login-form-wrap h2 {
        font-size: 29px;
    }
}
