@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background:
        radial-gradient(
            circle at top left,
            #fafafa,
            #f5f5f3 45%,
            #eeeeeb
        );

    color: #202020;

    font-family: "Inter", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.login-page {
    min-height: 100vh;

    display: grid;
    place-items: center;

    padding: 40px 20px;
}

.login-shell {
    width: min(100%, 440px);
}

.login-brand {
    margin-bottom: 28px;

    text-align: center;
}

.login-brand a {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

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

    letter-spacing: -1px;
}

.login-brand span {
    color: #999;
}

.login-card {
    padding: 43px;

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

    border: 1px solid #e3e3e0;

    border-radius: 24px;

    box-shadow:
        0 2px 5px rgba(0,0,0,.02),
        0 20px 55px rgba(0,0,0,.05);
}

.login-kicker {
    color: #999;

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

    letter-spacing: 1.7px;
}

.login-heading h1 {
    margin-top: 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 37px;
    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1.4px;
}

.login-heading p {
    margin-top: 13px;

    color: #777;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    line-height: 1.65;
}

.login-card form {
    margin-top: 34px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #666;

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

.form-group input {
    width: 100%;
    height: 49px;

    padding: 0 14px;

    border: 1px solid #dedede;

    border-radius: 10px;

    outline: none;

    background: #fff;

    font-size: 11px;

    transition: .2s ease;
}

.form-group input:focus {
    border-color: #999;

    box-shadow:
        0 0 0 3px rgba(0,0,0,.025);
}

.form-group > span {
    display: block;

    margin-top: 6px;

    color: #b54242;

    font-size: 9px;
}

.login-options {
    display: flex;

    justify-content: space-between;

    margin: 5px 0 25px;
}

.remember {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #777;

    font-size: 9px;
}

.login-button {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border: 0;
    border-radius: 100px;

    background: #202020;

    color: white;

    cursor: pointer;
}

.login-button span {
    font-size: 10px;
    font-weight: 600;
}

.login-button strong {
    font-size: 13px;

    transition: transform .2s;
}

.login-button:hover strong {
    transform:
        translate(2px, -2px);
}

.validation-summary {
    margin-bottom: 20px;

    color: #b54242;

    font-size: 10px;
}

.login-footer {
    margin-top: 25px;

    color: #aaa;

    text-align: center;

    font-size: 9px;
}