.home {
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background-image: linear-gradient(to right top, #051937, #1e2e73, #593cac, #a63bdd, #ff00ff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .home-child {
    min-height: 90vh;
    width: 85%;
    box-sizing: border-box;
    border-radius: 10px;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.home .home-child .img-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 15px 0;
}

.home .home-child .img-form .cover-img {
    width: 95%;
    height: 100%;
    border-radius: 15px 50px 30px;
    background-image: url('../img/login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
}

.home .home-child .img-form .cover-img .cover-img-text {
    position: absolute;
    top: 20px;
    right: 20px;
}

.home .home-child .form-brm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .home-child .form-brm #carouselExample {
    height: 95%;
    background-color: rgba(255, 255, 255, .5);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
}

@media (max-width: 991px) {
    .home {
        overflow: auto;
    }

    .home .home-child {
        overflow: auto;
    }

    .home .home-child .form-brm #carouselExample {
        margin-bottom: 3vh;
    }

    .home .home-child .img-form {
        display: none;
    }
}

@media (max-width: 480px) {
    .home {
        overflow: auto;
    }

    .home .home-child {
        overflow: auto;
        width: 95%;
    }

    .home .home-child .form-brm #carouselExample {
        margin-bottom: 3vh;
    }

    .home .home-child .img-form {
        display: none;
    }
}

/* loading send */
#loading {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading .loader {
    height: 50px;
    width: 50px;
    background: transparent;
    border: red 3px solid;
    border-top: transparent;
    border-radius: 50%;
    animation: animate81323 0.8s linear infinite;
  }

  @keyframes animate81323 {
    0% {
      border: 3px solid rgb(255, 75, 75);
      border-top: transparent;
      border-left: transparent;
      transform: rotate(0deg);
    }

    50% {
      border: 3px dashed rgb(240, 41, 240);
      border-top: transparent;
      border-left: transparent;
      transform: rotate(270deg);
    }

    100% {
      border: 3px dotted rgb(28, 228, 28);
      border-top: transparent;
      border-left: transparent;
      transform: rotate(360deg);
    }
  }
