:root {

    --primary: #087f8c;

    --primary-dark: #066570;

    --navy: #16324f;

    --muted: #64748b;

    --border: #e5e7eb;
}


* {
    box-sizing: border-box;
}


body {

    margin: 0;

    min-height: 100vh;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #f5f7fa;

}


.login-page {

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        minmax(420px, 1fr)
        minmax(420px, 1fr);

}


/* LEFT PANEL */

.login-brand-panel {

    position: relative;

    overflow: hidden;

    padding: 70px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: white;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(24, 183, 183, .32),
            transparent 28%
        ),

        linear-gradient(
            145deg,
            #123047,
            #075d68
        );
}


.login-brand-panel::after {

    content: "";

    position: absolute;

    right: -100px;
    bottom: -100px;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    border:
        55px solid
        rgba(255,255,255,.06);

}


.login-logo {

    width: 60px;
    height: 60px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.13);

    backdrop-filter: blur(8px);

    font-size: 28px;
}


.login-brand-title {

    font-size: 42px;

    line-height: 1.12;

    font-weight: 700;

    max-width: 560px;

    margin-top: 35px;
}


.login-brand-text {

    max-width: 530px;

    margin-top: 20px;

    font-size: 16px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.82);
}


.login-feature-list {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 13px;

    margin-top: 42px;

    max-width: 550px;
}


.login-feature {

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 14px;

    color:
        rgba(255,255,255,.9);
}


.login-feature i {

    color: #75e2d7;
}


.brand-footer {

    font-size: 12px;

    color:
        rgba(255,255,255,.55);
}



/* LOGIN FORM */

.login-form-panel {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px;

    background: white;
}


.login-card {

    width: 100%;

    max-width: 440px;
}


.login-small-logo {

    display: none;

    width: 52px;
    height: 52px;

    border-radius: 15px;

    align-items: center;

    justify-content: center;

    background: #e8f6f7;

    color: var(--primary);

    font-size: 24px;

    margin-bottom: 30px;
}


.login-title {

    font-size: 31px;

    color: var(--navy);

    font-weight: 700;

    margin-bottom: 8px;
}


.login-subtitle {

    color: var(--muted);

    margin-bottom: 38px;
}


.login-label {

    font-size: 13px;

    font-weight: 600;

    color: #334155;

    margin-bottom: 7px;
}


.login-input-wrap {

    position: relative;
}


.login-input-icon {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #94a3b8;

    z-index: 2;
}


.login-input-wrap input {

    width: 100%;

    height: 52px;

    padding-left: 45px;

    border-radius: 11px;

    border: 1px solid #d8dee7;

    outline: none;

    transition: .2s;
}


.login-input-wrap input:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px
        rgba(8,127,140,.1);
}


.password-toggle {

    position: absolute;

    right: 13px;

    top: 50%;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: #64748b;
}


.login-button {

    width: 100%;

    height: 52px;

    border: 0;

    border-radius: 11px;

    margin-top: 10px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #099ca2
        );

    color: white;

    font-size: 15px;

    font-weight: 650;

    transition: .2s;
}


.login-button:hover {

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(8,127,140,.18);
}


.login-help {

    text-align: center;

    margin-top: 35px;

    color: #94a3b8;

    font-size: 12px;
}


@media(max-width: 900px) {

    .login-page {

        display: block;

        background: white;
    }


    .login-brand-panel {

        display: none;
    }


    .login-form-panel {

        min-height: 100vh;

        padding: 30px 24px;
    }


    .login-small-logo {

        display: flex;
    }

}