.page {
    display: flex;
    align-items: center;
    padding-right: 20%;
}

.btn-submit {
    background-color: var(--secondary);
    border-radius: 8px;
    text-transform: none !important;
    color: #fff;
    font-size: 16px;
    font-weight: var(--font-weight-regular) !important;
}

.btn-submit:hover {
    color: #fff;
    background: var(--primary);
}

.form-check-label {
    color: #fff;
    font-size: 12px;
}

.form-check-label a {
    color: #fff;
    text-decoration: underline;
}

.user-links a {
    color: #fff;
    font-size: 12px;
}

.user-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.card {
    background: transparent !important;
    box-shadow: none;
}

.card-header {
    border-bottom: 0;
    padding: 0 0 32px 0;
    display: flex;
    justify-content: center;
}

.card-header img {
    display: none;
}

.card-body {
    padding: 0;
}

.card-body p {
    color: #fff;
}

@media (max-width: 991px) {
    .page {
        padding: 0;
        justify-content: center !important;
    }
}

@media (max-width: 557px) {
    .card-header img {
        display: flex;
        width: 300px;
    }
}