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

.auth-root {
    background: #fff;
    min-height: 100vh;
}

.auth-root,
.auth-root input,
.auth-root button,
.auth-root textarea,
.auth-root select {
    font-family: "RivieraNights-Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.auth-wrap {
    display: flex;
    width: 100%;
}

.auth-main {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 0 2.5rem;
}

.auth-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.auth-logo {
    width: 120px;
    height: auto;
    image-rendering: auto;
    margin-top: 0.5rem;
}

.auth-title {
    margin: 0.75rem 0 0;
    font-size: 2rem;
    font-weight: 600;
    color: #111;
}

.auth-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    color: #333;
}

.auth-container {
    margin-top: 0;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
    max-width: 720px;
}

.auth-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
}

.auth-input.auth-select {
    height: 40px;
}

.auth-section {
    padding-top: 0.5rem;
}

.auth-helper {
    font-size: 0.85rem;
    color: #555;
}

.auth-field {
    margin: 0;
}

.auth-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-error {
    color: #ef4444;
    font-size: 0.95rem;
}

.auth-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
}

.auth-remember {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.auth-link {
    font-size: 0.9rem;
    text-decoration: underline;
    color: #111;
}

.auth-radio-list {
    display: flex;
    gap: 1rem;
}

.auth-radio-list label {
    margin: 0;
    font-weight: 400;
}

.auth-radio-list input[type="radio"] {
    opacity: 1;
    width: auto;
    height: auto;
    position: static;
}

.auth-checkbox-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.auth-checkbox-row input {
    margin-top: 0.2rem;
}

.auth-button {
    width: 100%;
    height: 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1rem;
}

.auth-button.is-loading {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.auth-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.5rem;
}

.auth-inline {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.auth-side {
    display: none;
    width: 33.3333%;
    height: 100vh;
    padding-left: 3rem;
}

.login-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    display: none;
    justify-self: end;
    justify-content: end;
    align-items: end;
    position: relative;
}

.login-img--client {
    background-image: url('../images/bg-login.png');
}

.login-img--admin {
    background-image: url('../images/bg-admin-login.png');
}

.auth-picture {
    max-width: 100%;
    height: auto;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
}


@media (min-width: 768px) {
    .auth-main {
        width: 66.6667%;
        padding: 0 9rem;
    }

    .auth-side {
        display: flex;
    }

    .login-img {
        display: flex;
    }
}

