.auth-page {
    align-items: center;
    background: #090a0d;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.minimal-login {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    width: 100%;
}

.minimal-login__button {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    color: #17181b;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 12px;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
}

.minimal-login__button:hover {
    background: #f2f2f3;
    transform: translateY(-1px);
}

.minimal-login__button:active {
    transform: translateY(0);
}

.minimal-login__icon {
    flex: 0 0 21px;
    height: 21px;
    width: 21px;
}

.minimal-login__error {
    background: rgba(255, 103, 103, 0.1);
    border: 1px solid rgba(255, 103, 103, 0.24);
    border-radius: 10px;
    color: #ff9f9f;
    font-size: 13px;
    max-width: 360px;
    padding: 12px 14px;
    text-align: center;
    width: 100%;
}

@media (max-width: 480px) {
    .minimal-login__button {
        width: 100%;
    }
}
