body,
html {
    height: 100%;
    margin: 0;
    background: #579aff;
    /* background: -webkit-linear-gradient(to right, #1b1be3, #0505a3, #7F7FD5);
            background: linear-gradient(to right, #1b1be3, #0505a3, #7F7FD5); */
}

.login {
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

.login-panel {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    background-image: url('../img/login-panel.png');
    background-size: cover;
    box-shadow: 0 0px 40px #0000005e;
    max-width: 350px;
}

.fullscreen_bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url('../img/bg-login.jpg');
    background-repeat: repeat;
}

.message {
    border-radius: 5px;
    background-color: #ffebf0;
    border: 1px solid #f7a3ba;
    color: #ff4c4c;
    font-size: 1.2em;
    padding: 10px 20px;
    font-weight: 500;
}

.input-group {
    background: #ffffff;
    border-radius: 10px;
    padding: 0 10px;
    border: 1px solid #d5d5d5;
}

.input-group .input-group-text {
    background: transparent;
    color: #000;
    border: transparent;
}

.input-group .form-control-lg {
    background: transparent;
    border: transparent;
    color: #000;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    color: #000;
    background-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: rgb(0, 0, 0) !important;
}

.context {
    width: 100%;
    position: absolute;
    top: 50vh;
}

.context h1 {
    text-align: center;
    color: #000;
    font-size: 50px;
}

.area {
    /* background: #000000c4; */
    width: 100%;
    height: 100vh;
    top: 0;
    position: absolute;
    color: #000;
    transition: 0.20s;
}

.area:hover {
    /* background: #0000001c; */
    /* transition: 0.10s; */
    
}

.login-footer{
    background-color: transparent!important;
    background-size: cover;
    padding: 50px 0 0 0 !important;
    border-top: none!important;
    color: #273643!important;
}
.login-footer a{
    font-size: 13px;
    color: #fff;
}
.badge-alert{
    color: #fff;
    background-color: #ff5565;
    position: absolute;
    top: -16px;
    width: 25px;
    height: 25px;
    line-height: 20px;
    border-radius: 50%;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(255 255 255 / 13%);
    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: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 1%;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 100%;
    }
}

@media (max-width: 767px) {
    .login-panel {
        margin: 10px;
        padding: 25px;
    }
}


@keyframes animation {
    0%,
    100% {
      transform: translateX(0);
    }
  
    10%,
    30%,
    50%,
    70% {
      transform: translateX(-10px);
    }
  
    20%,
    40%,
    60% {
      transform: translateX(10px);
    }
  
    80% {
      transform: translateX(3px);
    }
  
    90% {
      transform: translateX(-20px);
    }
  }
  .arrow-animation{
    animation: animation 5s linear 0s infinite reverse none;
  }