.snk-auth-page {
    background: #f6f2f0;
    color: #111111;
    min-height: 100vh;
}

.snk-auth {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 42px 18px;
}

.snk-auth__brand {
    color: #111111;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.snk-auth__card {
    background: #ffffff;
    border: 1px solid #eadedd;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(17, 17, 17, .08);
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
    max-width: 980px;
    overflow: hidden;
    width: 100%;
}

.snk-auth__media {
    background: #efe7e4;
    min-height: 560px;
}

.snk-auth__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.snk-auth__form {
    padding: 58px 56px;
}

.snk-auth__eyebrow {
    color: #b39091;
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.snk-auth__form h1 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
}

.snk-auth__form p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 28px;
}

.snk-auth__form label {
    color: #111111;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.snk-auth__form input {
    border: 1px solid #eadedd;
    border-radius: 8px;
    display: block;
    height: 48px;
    margin-top: 8px;
    padding: 0 14px;
    width: 100%;
}

.snk-auth__form textarea {
    border: 1px solid #eadedd;
    border-radius: 8px;
    display: block;
    margin-top: 8px;
    min-height: 110px;
    padding: 14px;
    resize: vertical;
    width: 100%;
}

.snk-auth__form input:focus {
    border-color: #b39091;
    box-shadow: 0 0 0 3px rgba(179, 144, 145, .16);
    outline: 0;
}

.snk-auth__form textarea:focus {
    border-color: #b39091;
    box-shadow: 0 0 0 3px rgba(179, 144, 145, .16);
    outline: 0;
}

.snk-auth__alert {
    background: #fff2f2;
    border: 1px solid #f2caca;
    border-radius: 8px;
    color: #b33434;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.snk-auth__password-field {
    display: block;
    position: relative;
}

.snk-auth__password-field input {
    padding-right: 48px;
}

.snk-auth__password-toggle {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    color: #8f7c7d;
    display: inline-flex;
    height: 48px !important;
    justify-content: center;
    margin-top: 0 !important;
    position: absolute;
    right: 0;
    top: 8px;
    width: 48px !important;
}

.snk-auth__password-toggle:hover {
    color: #111111;
}

.snk-auth__form button {
    background: #111111;
    border: 1px solid #111111;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 800;
    height: 50px;
    margin-top: 6px;
    text-transform: uppercase;
    width: 100%;
}

.snk-auth__form button:hover {
    background: #b39091;
    border-color: #b39091;
}

.snk-auth__footer {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
}

.snk-auth__footer a {
    color: #b39091;
    font-weight: 800;
}

.snk-auth__error {
    color: #ca1515;
    display: block;
    margin: -8px 0 12px;
}

@media (max-width: 767px) {
    .snk-auth__card {
        grid-template-columns: 1fr;
    }

    .snk-auth__media {
        min-height: 220px;
    }

    .snk-auth__form {
        padding: 34px 24px;
    }

    .snk-auth__form h1 {
        font-size: 28px;
    }
}
