@font-face {
    font-family: 'Cygre';
    src: url('/fonts/Cygre-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Cygre';
    src: url('/fonts/Cygre-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Cygre';
    src: url('/fonts/Cygre-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    background: url('/content/bg-log-abit.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Cygre', Arial, sans-serif !important;
}

footer {
    background-color: transparent;
}

#wrapper {
    background-color: transparent;
}

#content-main {
    background: transparent;
    padding: 0 !important;
}

.body-content {
    width: 80%;
}

.container {
    width: 45vw !important;
    border-radius: 37px !important;
    display: flex;
    justify-content: center;
}
footer {
    display: none !important;
}
.site-index {
    justify-content: center;
    display: flex;
    width: 100%;
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}
h1 {
    font-weight: 600 !important;
    font-size: 58px !important;
    text-align: center;
}
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.has-star {
    font-size: 20px !important;
    font-weight: 300 !important;
}

#loginform-identity, #loginform-password {
    font-size: 20px !important;
    font-weight: 300 !important;
}

.form-check-input {
    margin-top: 0.5rem !important;
}

.btn-primary {
    border-radius: 12px !important;
    padding: 5px 25px 5px 25px !important;
    font-weight: 600 !important;
    font-size: 38px !important;
    background-color: black !important;
}

.log-block {
    display: flex;
    justify-content: center;
    margin-bottom: 0 !important;
    margin-top: 1rem;
}

nav {
    display: flex !important;
    justify-content: center !important;
}
.nav-bar-background-color {
    background-color: transparent !important;
}

.login-info-blocks {
    margin-top: 30px;
    display: flex;
    gap: 55px;
    align-items: flex-start;
}

@keyframes slideInOutBlack {
    0% {
        transform: translateY(120%);
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(120%);
        opacity: 0;
    }
}

@keyframes slideInOutBlue {
    0% {
        transform: translateY(120%);
        opacity: 0;
    }
    20% {
        transform: translateY(0);
        opacity: 1;
    }
    70% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(120%);
        opacity: 0;
    }
}

.login-info-black {
    animation: slideInOutBlack 7s cubic-bezier(1,0.4,0.2,1) infinite;
    animation-delay: 0s;
    width: max-content;
    background: #000;
    color: #fff;
    border-radius: 12px;
    padding: 12px 24px 15px 24px;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: absolute;
    right: 67%;
}

.login-info-blue {
    animation: slideInOutBlue 7s cubic-bezier(1,0.4,0.2,1) infinite;
    animation-delay: 0s;
    right: 2rem;
    top: 2.8rem;
    position: relative;
    background: #6ee3ef;
    color: #fff;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#user-tabs {
    justify-content: center;
}

.additional-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.addition-block {
    background-color: #6DDAE5;
    width: max-content;
    border-radius: 12px;
    padding: 3px 7px;
    margin-bottom: 10px;
    transition: transform 0.15s cubic-bezier(0.4,0,0.2,1), box-shadow 0.15s cubic-bezier(0.4,0,0.2,1);
}

.addition-block:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    cursor: pointer;
}

.addition-block a {
    color: white;
    font-weight: 600;
}

.addition-block a:hover {
    color: white;
    text-decoration: none;
}
