@import url('./fontawesome/index.css');
@import url('./themes.css');

html{
    background-image: url("../images/Login-BG.png"); 
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: none;
}

h1 {
    color: var(--bg-50);
    font-weight: bold;
    font-size: 22px
}

.shadow{
    box-shadow: 5px 5px 10px #00000025;
}

.wrapper {
    width: 840px;
    max-width: 80%;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
}

.login-form{
    margin-right: 10px;
}

.login-form .btn {
    display: block;
    width: 100%;
    font-size: 14px;
}

.login-form .btn + .btn{
    margin-top: 5px;
}

.btn-outline-primary:hover {
    background-color: var(--app);
    color:white;
    border: 1px solid var(--app);
}

/* Carousels General */
.carousel-control-prev {
    inset: auto 40px 0 auto;
    height: 40px;
    width: 40px;
    color: #fff;
}

.carousel-control-next {
    inset: auto 0 0 auto;
    height: 40px;
    width: 40px;
    color: #fff;
}

.carousel-control-prev i,
.carousel-control-next i{
    color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    width: 0.05rem;
    height: 0.05rem;
}

.learn-more {
    background-color: rgba(0,0,0,0.4);
    height: 40px;
    position: absolute;
    inset: auto 0 0 0;
    z-index: 10;
    padding: 2px 5px;
    display: flex;
    align-items: center;
}

.learn-more a{
    color: #fff;
    padding: 10px;
    height: 40px;
}

.learn-more a i{
    color: #fff !important;
}

/* Carasoul Ads */
.carousel-ads {
    width: 100%;
    padding-bottom: 70%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    background: #00000040;
}

.carousel-ads .carousel-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
}

.carousel-ads .carousel-item{
    height: 100%;
    width: 100%;
    text-align: center;
}

.carousel-ads .carousel-item img{
    height: 100%;
    width: auto;
}

/* Notification Panel*/
.notif-box {
    background-color: white;
    border-radius: 15px;
    height: 170px;
    box-sizing: border-box;
    margin-bottom: 0;
}

.notif-box h2 {
    color: var(--warning);
}

.notif-date{
    font-size: 12px;
    color: #8a8585;
    font-style: italic;
    padding-bottom: 2px;
}

.notif-msg{
    color: #545454;
    padding-bottom: 5px;
}

.notif-box .carousel-control-prev i,
.notif-box .carousel-control-next i{
    color: var(--bg-50);
}

/* Footer */
.card-footer {
    padding: unset;
}

footer {
    position: fixed;
    inset: auto 0 0 0;
    padding: 0 20px 20px;
}

footer * {
    text-decoration: none;
    font-size: 11px;
    color: #ffffff !important;
}

@media only screen and (max-width: 840px) {
    .wrapper{
        padding: 40px 0;
        width: 720px;
        position: static;
        transform: translate(0, 0);
    }

    .row{
        gap: 10px;
    }

    .col{
        width: 100%;
        display: block;
    }

    .login-form{
        margin-right: 0;
        margin-bottom: 10px;
    }

    .carousel-ads{
        display: none;
    }

    footer .col{
        display: block;
        text-align: center !important;
    }

    footer{
        padding-top: 50px;
        position: static;
    }
}

@media only screen and (max-height: 770px) {
    .wrapper{
        padding: 40px 0;
        width: 720px;
        position: static;
        transform: translate(0, 0);
    }

    footer{
        padding-top: 50px;
        position: static;
    }
}