body {
    padding: 0;
    margin: 0;
}

.card-login {
    border-radius: 10px;
    width: 40%;
}

.custom-form input {
    border-radius: 10px;
}

.custom-form .btn-submit-login {
    background-color: #6274b6;
    color: #fff;
    font-size: 20px;
    transition: background-color .4s ease-in-out;
    border-radius: 10px;
}

.custom-form .btn-submit-login:hover {
    background-color: #505f97;
}

.img-banner-login {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 10rem;
    top: 3%;
}

.img-banner-login img{
    height: 18rem;
    border-radius: 20px;
}

.img-background-login {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.img-background-login img{
    max-width: 100%;
    background-size: cover;
    background-position: center center;
    height: 100%;
}

.img-log img {
    max-width: 60%;
}

form span.text-danger {
    font-size: 12px;
    margin-left: 2px;
    transition: all .4s;
}

input.invalid-field {
    border-color: rgb(236, 27, 27);
    transition: all .3s;
}

input.invalid-field:focus {
    border-color: rgb(236, 27, 27);
    box-shadow: 0 0 0 .2rem rgba(200, 39, 39,.25);
}

/* Notification */
.content-notification {
   position: fixed;
   right: 2%;
   bottom: 8%;
   z-index: 2000;
   opacity: 0;
   transition: all .3s;
}

.content-notification.show {
   opacity: 1;
}

.content-notification .toast{
    opacity: 1;
}

.content-notification .toast-body{
    border-radius: 8px;
    border: none;
    padding: 1.15rem 1rem;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.content-notification .toast-body svg{
    width: 2.3rem;
    margin-right: .7rem;
}

.content-notification .toast.success .toast-body{
    background-color: #519c53d0;
    color: #fff;
}

.content-notification .toast.danger .toast-body{
    background-color: #d71f1fd0;
    color: #fff;
}

.content-notification .toast.warning .toast-body{
    background-color: #ed8815d0;
    color: #000;
}

/* Loader */
.content-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.content-loader.show {
    display: flex;
}
.loader {
    transform: rotateZ(45deg);
    perspective: 400px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    color: #00519f;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #57a4d8;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

/* RESPONSIVE */
/* Between 320px and 500px */
@media (320px <= width <= 500px) {
    .card-login {
        border-radius: 10px;
        width: 100%;
    }
}

/* Between 500px and 992px */
@media (500px <= width <= 992px) {
    .card-login {
        border-radius: 10px;
        width: 80%;
    }
}

/* Between 768px and 992px */
@media (768px <= width <= 992px) {
    .img-banner-login {
        padding: 0 2rem;
        top: 2%;
    }
}

/* Between 992px and 1200px */
@media (992px <= width <= 1200px) {
    .card-login {
        border-radius: 10px;
        width: 60%;
    }
    .img-banner-login {
        padding: 0 3rem;
    }
}