﻿body.login-view:before {
    content: " ";
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    background: #11113a !important;
    background-size: 400% 400%;
}

.login-view label {
    font-weight: 400 !important;
    color: #fff;
}

a, a:hover {
    color: #ffffff;
    text-decoration: none;
}


.login-view .authentication-form {
    border-radius: 8px;
    border: none;
    padding: 30px 40px;
    background: rgba(238, 28, 37, 0.4);
    position: relative;
    z-index: 1;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.login-view .authentication-form input {
    text-align: left;
    height: 45px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.login-view .authentication-form input:focus {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.authentication-form-wrapper {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    float: none !important;
    padding: 0 15px;
}

.login-view h1 {
    color: #fff;
}

.login-view .btn-info, .btn-info, .btn-info:hover, .btn-info:focus, .btn-info:active {
    color: #fff;
    background: #b11f25;
    border: 1px solid #b11f25;
    padding: 10px 20px;
}

#wrapper {
    min-height: 100% !important;
}

::-webkit-scrollbar {
    width: 10px !important;
}

/* Track */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
}

/* Handle */

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px !important;
    border-radius: 10px !important;
    background: #eee !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5) !important;
    min-height: 30px !important;
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(0, 0, 0, 0.7) !important;
    }

@media only screen and (max-width: 800px) {
    .login-view .authentication-form {
        border-radius: 8px;
        border: none;
        padding: 25px;
        background: rgba(10, 10, 10, 0.6);
        margin: 12% auto;
        width: 95%;
        max-width: 550px;
    }
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.login-view .authentication-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-view .authentication-form h1,
.login-view .authentication-form .control-label {
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.company-logo {
    margin-top: 100px !important;
    background: white;
    padding: 20px 40px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 auto;
    width: auto;
}

.company-logo img {
    max-width: 500px;
    height: auto;
}

/* Center the logo container */
.authentication-form-wrapper .company-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
