* {
    outline: none;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

:root {
    --theme-bg-color: rgba(88 1 40 / 100%);
    --blue-color: #ff0064;
    --default-color: #ff6400;
    --border-color: rgba(113 119 144 / 25%);
    --inactive-color: rgba(151, 157, 175, 0.78);
    --body-font: "BBLSans05", sans-serif;
    --font-weight-reguler: 400;
    --font-weight-medium: 500;
    --scrollbar-bg: rgb(1 2 3 / 40%);
    --text-white: #fff;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

label,
.label,
.badge,
.alert .alert-link,
.close{
    font-weight: var(--font-weight-reguler);
}

/* ---------------------------------------------------------------------------------------------------------------- */
.img-bg {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.img-bg img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.overlay-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.1); */
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--text-white);
    background: var(--theme-bg-color);
    font-size: 13px;
    margin: auto;
    overflow: hidden;
    padding: 2em;
    width: 100%;
    height: 100vh;
    transition: all .5s linear;
    display: block;
}

.btn-blue{
    padding: 8px 24px;
    background: var(--blue-color);
    color: var(--text-white);
    font-weight: var(--font-weight-medium);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-default {
    padding: 8px 24px;
    background: var(--default-color);
    color: var(--text-white);
    font-weight: var(--font-weight-medium);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-blue:hover{
    color: var(--text-white);
    background: #004fcc;
    transform: scale(1.05);
    border:0;
}
.btn-blue:active {
    color: var(--text-white);
    background: #00307e;
    transform: scale(0.95);
}

.btn-blue:focus {
    color: var(--text-white);
    outline: none;
    box-shadow: inset 0px 0px 0px 1px #fff;
    
}

.btn-rounded{
    border-radius: 25px;
}

.logo-box{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 5%), rgba(255,0,0,0));
    padding: 1em 3em;
}
.logo-box img{
    height: 35px;
    width: auto;
}

.login-box {
    position: absolute;
    top: 50%;
    right: 3em; 
    transform: translate(0, -50%);
    min-height: 250px;
    min-width: 555px;
    border: 1px solid transparent;
    background: var(--theme-bg-color);
    backdrop-filter: blur(5px);
    border-radius: 25px;
}

.relative {
    position: relative;
}

.login-box .box-header {
    /* border-bottom: 1px solid var(--border-color); */
    padding: 25px 25px 10px;
}

.login-box .box-header .title {
    font-size: 28px;
    text-align: left;
}

.login-box .box-body {
    padding:10px 25px 0px;
}

.login-box .box-footer {
    /* border-top: 1px solid var(--border-color); */
    padding: 10px 25px 25px;
}

.box-body {
    position: relative;
}

.box-body .form-group {
    margin-right: 0;
    margin-left: 0;
}


.box-body .form-group label {
    margin-bottom: 0;
}
.box-body .input-lg {
    font-size: 16px;
    height: 48px;
    padding: 5px 0;
    border-radius: 0;
}

.box-body input[type="email"],
.box-body input[type="text"],
.box-body input[type="password"],
.box-body input:focus {
    background-color: transparent !important;
    color: var(--text-white);
    border: none;
    border-radius: 0;
    font-weight: var(--font-weight-medium);
    box-shadow: inset 0px -2px 0px 0px var(--text-white);
}

.box-body input:focus {
    box-shadow: inset 0px -2px 0px 0px var(--blue-color) !important;
}

input:focus,
input.form-control:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.footer{
    position:absolute;
    left:0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background:var(--theme-bg-color);
    padding: 0 3em;
}
.footer span {
    height: 100%;
    display: flex;
    width: 100%;
    font-size: 12px;
    color: var(--text-white);
    align-items: center;
}

::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-bg);
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .login-box {
        right: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        min-width: auto; 
    }

    .login-box .box-header {
        padding: 20px 15px;
    }

    .login-box .box-body {
        padding: 10px 15px;
    }

    .login-box .box-footer {
        padding: 10px 15px 20px;
    }

    .login-box .box-footer .content {
        font-size: 12px;
    }

    .btn-blue {
        padding: 8px 16px;
        font-size: 14px; 
    }

    .logo-box {
        padding: 10px 15px;
    }

    .footer {
        height: auto;
        padding: 10px 15px;
    }

    .footer span {
        font-size: 10px; 
        text-align: center; 
    }
}

@media screen and (max-width: 768px) {
    .login-box {
        right: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .btn-blue {
        padding: 6px 12px; 
        font-size: 12px;
    }

    .logo-box {
        text-align: center; 
        padding: 10px 0;
    }

    .logo-box img {
        height: 30px;
    }

    .footer {
        padding: 10px;
    }

    .footer span {
        font-size: 10px;
    }
}

@media screen and (max-width: 512px) {
    .login-box {
        right: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%; 
        padding: 1em;
    }
}
