:root {
    --inmo-primary: #18354f;
    --inmo-primary-dark: #10283d;
    --inmo-accent: #c9a96e;
    --inmo-text: #263746;
    --inmo-muted: #718090;
    --inmo-border: #dfe5ea;
    --inmo-background: #f8fafb;
}

html,
body {
    min-height: 100%;
}

body.inmo-login-body {
    margin: 0;
    min-height: 100vh;
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    background: var(--inmo-background);
}

.inmo-login-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(420px, .75fr);
}

.inmo-login-hero {
    position: relative;
    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            rgba(13, 38, 58, .96),
            rgba(24, 53, 79, .78)
        ),
        url("../img/login-real-estate.jpg")
        center center / cover
        no-repeat;

    color: #ffffff;
    overflow: hidden;
}

.inmo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 20, 31, .12),
            rgba(5, 20, 31, .34)
        );
}

.inmo-hero-content {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    padding:
        55px
        clamp(45px, 7vw, 110px);

    display: flex;
    flex-direction: column;
}

.inmo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inmo-brand-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;

    background: rgba(255, 255, 255, .10);

    font-size: 23px;
}

.inmo-brand-name {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: .7px;
}

.inmo-brand-subtitle {
    margin-top: 1px;
    font-size: 13px;
    opacity: .72;
    letter-spacing: 1.2px;
}

.inmo-hero-copy {
    max-width: 720px;
    margin-top: auto;
    margin-bottom: auto;
}

.inmo-kicker {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #e5ca96;
}

.inmo-hero-copy h1 {
    margin: 0 0 20px;

    max-width: 720px;

    font-size:
        clamp(
            40px,
            4.1vw,
            64px
        );

    line-height: 1.08;
    font-weight: 650;
    letter-spacing: -.9px;
}

.inmo-hero-copy p {
    max-width: 620px;

    margin: 0;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .82);
}

.inmo-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, .16);
}

.inmo-features div {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 14px;

    color:
        rgba(
            255,
            255,
            255,
            .78
        );
}

.inmo-features i {
    color: #dfc28c;
}

.inmo-login-panel {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 55px;

    background: #ffffff;
}

.inmo-login-box {
    width: 100%;
    max-width: 430px;
}

.inmo-mobile-brand {
    display: none;
}

.inmo-login-kicker {
    display: block;
    margin-bottom: 9px;

    color: var(--inmo-accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.inmo-login-box h2 {
    margin: 0;

    color: var(--inmo-text);

    font-size: 32px;
    font-weight: 650;
}

.inmo-login-description {
    margin:
        10px
        0
        32px;

    color: var(--inmo-muted);

    line-height: 1.6;
}

.inmo-login-box label {
    margin-bottom: 7px;

    color: #425363;

    font-size: 14px;
    font-weight: 600;
}

.inmo-login-box .form-control {
    min-height: 48px;

    border-color:
        var(--inmo-border);

    box-shadow: none;
}

.inmo-login-box .form-control:focus {
    border-color:
        #9cb0c0;

    box-shadow:
        0 0 0 .15rem
        rgba(24, 53, 79, .08);
}

.inmo-login-box .input-group-text {
    min-width: 46px;

    justify-content: center;

    background: #f7f9fa;

    border-color:
        var(--inmo-border);

    color: #7b8994;
}

.btn-inmo-login {
    min-height: 50px;

    margin-top: 25px;

    border:
        1px solid
        var(--inmo-primary);

    border-radius: 6px;

    background:
        var(--inmo-primary);

    color: #ffffff;

    font-weight: 600;
}

.btn-inmo-login:hover,
.btn-inmo-login:focus {
    background:
        var(--inmo-primary-dark);

    border-color:
        var(--inmo-primary-dark);

    color: #ffffff;
}

.inmo-login-footer {
    margin-top: 40px;
    padding-top: 23px;

    border-top:
        1px solid
        #edf0f2;

    color: #8a969f;

    font-size: 12px;
    line-height: 1.7;
}

@media (
    max-width: 991.98px
) {
    .inmo-login-wrapper {
        display: block;
    }

    .inmo-login-hero {
        display: none;
    }

    .inmo-login-panel {
        padding: 30px 20px;
    }

    .inmo-mobile-brand {
        display: block;

        margin-bottom: 30px;

        color:
            var(--inmo-primary);

        font-size: 21px;
        font-weight: 700;
        letter-spacing: .7px;
    }
}