@font-face {
    font-display: swap;
    font-family: 'SF Pro Display';
    src: url('/fonts/sf-pro-display/SF-Pro-Display-Regular.otf')
    format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'SF Pro Display';
    src: url('/fonts/sf-pro-display/SF-Pro-Display-Semibold.otf')
    format('opentype');
    font-weight: 600;
    font-style: normal;
}

html, body {
    font-size: 14px;
    background: #101020;
}

body {
    margin: 0;
    padding: 0;
    color: #FFF;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    padding: 16px;
    z-index: 1;
}

.content {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
}

.title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.description {
    text-align: center;
    color: #A8B0C1;
}

.footer {
    text-align: center;
    color: #A8B0C1;
}

.bg-maintenance {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.bg-wrapper {
    background: url('/images/bg-authentication.webp') no-repeat fixed center;
    background-size: cover;
}

.btn {
    padding: 12px;
    cursor: pointer;
    border-radius: 32px;
    border: none;
    min-width: 160px;
    height: auto;
    background-color: unset;
    text-transform: capitalize;
    white-space: nowrap;
    text-align: center;
    font-weight: 600;
    line-height: 24px;
    font-size: 16px;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.btn-primary {
    color: white;
    background-color: #3861FB;
}

.btn-primary:hover {
    background-color: rgba(0, 94, 255, .8);
}
