:root {
    --accent: #22bd99;
    --ink: #070a26;
    --field: #e8f0fd
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: #fff;
    font-family: Arial, sans-serif
}

.login-shell {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    border-top: 4px solid #333
}

.login-intro {
    position: relative;
    min-height: calc(100vh - 4px);
    overflow: hidden;
    border-radius: 0 74px 74px 0;
    background: url('../img/bg-login.png') center/cover no-repeat
}

.intro-content {
    position: absolute;
    top: 14%;
    right: 23%;
    bottom: 10%;
    left: 23%;
    border-radius: 22px;
    background: rgba(0, 0, 0, .66)
}

.intro-copy {
    position: absolute;
    right: 10%;
    bottom: 10%;
    left: 10%;
    color: #fff
}

.intro-illustration {
    display: block;
    width: min(100%, 300px);
    height: auto;
    margin: 0 auto clamp(34px, 6vh, 68px)
}

.intro-eyebrow {
    margin: 0 0 14px;
    font-size: clamp(17px, 1.3vw, 25px)
}

.login-intro h1 {
    margin: 0;
    font-size: clamp(31px, 2.15vw, 47px);
    font-weight: 300;
    line-height: 1.15;
    text-transform: uppercase
}

.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 48px;
    background: linear-gradient(145deg, #f7f5f1, #fff9f3)
}

.login-card {
    width: min(100%, 455px);
    padding: 45px 38px 36px;
    border: 1px solid #e8e2dc;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(80, 54, 36, .1)
}

.login-logo {
    margin-bottom: 34px
}

.login-logo img {
    display: block;
    width: min(100%, 330px);
    height: auto
}

form>label,
.password-label label {
    display: block;
    margin-bottom: 17px;
    font-size: 16px;
    font-weight: 700
}

.password-label {
    margin-top: 34px
}

.input-wrap {
    position: relative
}

.input-wrap>i {
    position: absolute;
    top: 16px;
    left: 15px;
    z-index: 1;
    color: #98a2ad;
    font-size: 15px
}

.input-wrap input {
    width: 100%;
    height: 50px;
    padding: 0 44px;
    border: 1px solid #d9dde3;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: var(--ink);
    font: 400 16px Arial, sans-serif;
    transition: border-color .2s, box-shadow .2s
}

.input-wrap input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34, 189, 153, .14)
}

.password-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #687386;
    cursor: pointer
}

.remember {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 19px 0 27px !important;
    color: #747d89;
    font-size: 13px;
    font-weight: 400 !important
}

.remember input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #d71920
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 49px;
    gap: 10px;
    margin-top: 0;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(110deg, #cc141b 0%, #f01818 48%, #ff7614 100%);
    color: #fff;
    cursor: pointer;
    font: 700 14px Arial, sans-serif;
    box-shadow: 0 13px 25px rgba(225, 31, 24, .2);
    transition: box-shadow .2s, transform .2s
}

.login-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(225, 31, 24, .28)
}

.support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    color: #747d89;
    font-size: 12px
}

.support i,
.support a {
    color: #d71920
}

.support i {
    font-size: 17px
}

.support a {
    font-weight: 700;
    text-decoration: none
}

@media (max-width: 900px) {
    .login-shell {
        display: block;
        border-top: 0
    }

    .login-intro {
        display: none
    }

    .login-panel {
        min-height: 100vh;
        padding: 28px 20px
    }

    .login-logo {
        margin-bottom: 34px
    }
}

@media (max-width: 520px) {
    .login-panel {
        align-items: center;
        padding: 16px 12px
    }

    .login-card {
        width: 100%;
        padding: 38px 25px 30px;
        border-radius: 20px
    }

    .login-logo {
        margin-bottom: 32px
    }

    form>label,
    .password-label label {
        font-size: 14px
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important
    }
}