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

body.auth-page {
    margin: 0;
    min-height: 100vh;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../img/wallpaper.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-card {
    width: 360px;
    max-width: calc(100vw - 32px);
    padding: 28px 34px 30px;
    background: rgba(12, 13, 14, .64);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    box-shadow: 0 22px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(10px);
}

.login-logo {
    display: block;
    width: 100%;
    max-width: 295px;
    height: auto;
    margin: 0 auto 24px;
}

.form-label {
    margin-bottom: 7px;
    font-size: .78rem;
    font-weight: 700;
    color: #f5f5f5;
}

.form-control {
    height: 42px;
    padding: 0 13px;
    background-color: rgba(10, 10, 10, .24);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 5px;
    color: #fff;
    font-size: .82rem;
}

.form-control::placeholder {
    color: rgba(255,255,255,.58);
}

.form-control:focus {
    color: #fff;
    background-color: rgba(15,15,15,.35);
    border-color: #6f819c;
    box-shadow: 0 0 0 .18rem rgba(111,129,156,.20);
}

.btn-login {
    height: 43px;
    border-radius: 5px;
    border: 0;
    background: #6f819c;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-login:hover {
    background: #7d8fac;
    color: #fff;
}

.text-link {
    color: rgba(255,255,255,.76);
    text-decoration: none;
    font-size: .79rem;
}

.text-link:hover {
    color: #fff;
}

.legal-links {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: .76rem;
    text-transform: uppercase;
}

.legal-links a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0,0,0,.65);
}

.legal-links a:hover {
    color: #fff;
}

@media (max-height: 720px) {
    .auth-shell {
        align-items: start;
        padding-top: 24px;
        padding-bottom: 72px;
    }

    .legal-links {
        position: static;
        padding-bottom: 18px;
    }
}
