:root {
    --border-color: rgb(240, 240, 240);
    --placeholder-area-color: #eee;
    --text-color-help: #6c757d;
    --text-color-error: #dc3545;
    --color-primary: #2B6EAD;
}

hr {
    background-color: var(--border-color);
    height: 1px;
    border: none;
    margin: 1rem 0;
}

.validation-block ul {
    margin: 0;
    list-style: none;
    margin-block-start: 0;
    padding-inline-start: 0;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 100%), radial-gradient(100.98% 100.98% at 14.51% 45.8%, #4F839C 0%, #52BED1 20.12%, rgba(149, 180, 192, 0.571317) 62.36%, #007FD3 100%);
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card-view {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.footer {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
}

p.copyright {
    color: rgba(0, 0, 0, 0.45);
    font-size: 14px;
    line-height: 22px;
}

.card-view > .container {
    width: 400px;
}

@media screen and (max-width: 410px) {
    .card-view > .container {
        width: 350px;
    }
}

.card-view > .container > .content > .ant-card  {
    border-radius: 8px;
}

.card-view > .container > .content > .ant-card > .ant-card-body {
    padding: 0;
}

.card-view > .container > .content > .title {
    text-align: center;
    margin: 1em;
}

.header > .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px;
}

a {
    color: var(--color-primary);
}

a:hover {
    color: var(--color-primary);
}

.registration {
    padding-top: 5px;
    text-align: center;
}

input[type='checkbox'] {
    accent-color: var(--color-primary);
}

.login_actions > .forgotPassword {
    display: flex;
    justify-content: space-between;
    padding: 0 0 29px 0;
}

.header > .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.88);
    text-align: center;
    padding: 1.5rem 0;
}

.ant-input-affix-wrapper {
    border-radius: 6px;
}

.form-body {
    padding: 0 2.5em 2.5em 2.5em;
}

.ant-btn {
    border-color: var(--color-primary);
    background: var(--color-primary);
    border-radius: 6px;
}

.ant-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

body {
    font-family: 'Poppins', 'Helvetica', 'sans-serif';
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.w-100 {
    width: 100%;
}

.text-small {
    font-size: .875rem;
}

.text-center {
    text-align: center;
}

#qr-code {
    margin: 1rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.ant-alert {
    margin-bottom: 1rem;
}

.btn-link {
    color: var(--antd-wave-shadow-color);
    padding: 0;
    outline: none;
    border: none;
    background: none;
    display: inline-block;
    text-align: left;
}

.ant-form-item-explain-error {
    font-size: 0.875em;
}

antd-alert {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error {
    color: #ff4d4f;
}