* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f2e8;
    color: #1f211e;
}

.login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 56% 44%;
}


/* LEFT */

.brand-panel {
    min-height: 100vh;
    padding: 52px 7%;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            90deg,
            rgba(250,247,239,.98) 0%,
            rgba(250,247,239,.94) 55%,
            rgba(250,247,239,.72) 100%
        );
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    color: #162234;
}

.brand-subtitle {
    margin-top: 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    color: #26633f;
}

.brand-content {
    margin: auto 0;
    max-width: 620px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 42px;
}

.brand-content h1 {
    margin: 0;
    max-width: 580px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 82px);
    line-height: 1.02;
    font-weight: normal;

    color: #731323;
}

.brand-description {
    margin-top: 34px;
    max-width: 480px;

    font-size: 20px;
    line-height: 1.55;
    color: #48505a;
}

.brand-features {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;

    padding-top: 35px;
    font-size: 14px;
}


/* RIGHT */

.login-panel {
    min-height: 100vh;
    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #f5efe4;
}

.login-card {
    width: 100%;
    max-width: 560px;
    margin: auto;

    background: #fff;
    padding: 50px;

    border-radius: 14px;
    box-shadow: 0 12px 45px rgba(0,0,0,.06);
}

.mobile-brand {
    display: none;
}

.login-card h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.08;
    color: #172033;
}

.portal-label {
    margin-top: 7px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    color: #26633f;
}

.signin-text {
    margin: 30px 0;
    color: #555d65;
}

.message {
    margin-bottom: 20px;
    padding: 12px 14px;

    background: #fff3d6;
    border-radius: 8px;

    font-size: 14px;
}

label {
    display: block;
    margin: 20px 0 8px;

    font-size: 14px;
    font-weight: 600;
}

input {
    width: 100%;
    height: 54px;

    padding: 0 16px;

    border: 1px solid #ccd0d4;
    border-radius: 7px;

    font-size: 16px;
    background: #fff;
}

input:focus {
    outline: none;
    border-color: #7b1828;
    box-shadow: 0 0 0 3px rgba(123,24,40,.08);
}

button {
    width: 100%;
    height: 56px;

    margin-top: 28px;

    border: 0;
    border-radius: 7px;

    background: #86182a;
    color: white;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
}

button:hover {
    background: #701222;
}

.supplier-note {
    margin-top: 30px;
    padding: 17px;

    text-align: center;

    border: 1px solid #d8d8d8;
    border-radius: 8px;
}

.supplier-note strong,
.supplier-note span {
    display: block;
}

.supplier-note span {
    margin-top: 5px;
    font-size: 13px;
    color: #686d72;
}

footer {
    max-width: 560px;
    width: 100%;

    margin: 25px auto 0;

    text-align: center;
    font-size: 12px;
    color: #757575;
}


/* MOBILE */

@media (max-width: 800px) {

    body {
        background: #f8f5ee;
    }

    .login-page {
        display: block;
    }

    .brand-panel {
        display: none;
    }

    .login-panel {
        min-height: 100vh;
        padding: 22px;
        justify-content: flex-start;
    }

    .login-card {
        margin: 30px auto 0;
        padding: 30px 24px;

        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0,0,0,.05);
    }

    .mobile-brand {
        display: block;
        margin-bottom: 38px;
        text-align: center;
    }

    .mobile-brand strong {
        display: block;

        font-family: Georgia, "Times New Roman", serif;
        font-size: 25px;
        color: #172033;
    }

    .mobile-brand span {
        display: block;
        margin-top: 3px;

        font-family: Georgia, "Times New Roman", serif;
        font-size: 19px;
        color: #26633f;
    }

    .login-card h2 {
        font-size: 32px;
    }

    .portal-label {
        font-size: 23px;
    }

    input,
    button {
        height: 56px;
    }
}
