/* CSS Document */
.gradient-custom-2 {
/* fallback for old browsers */
background: #fccb90;

/* Chrome 10-25, Safari 5.1-6 */
background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);

/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: -webkit-gradient(linear, left top, right top, from(#ee7724), color-stop(#d8363a), color-stop(#dd3675), to(#b44593));
background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
}
.gradient-custom {
    /* fallback for old browsers */
   /* background: #6a11cb;*/
    background: -webkit-gradient(linear, left top, right top, from(#14b1e6), to(#ab2526));
    background: linear-gradient(to right, #14b1e6, #ab2526);
  }

@media (min-width: 768px) {
.gradient-form {
height: 100vh !important;
}
}
@media (min-width: 769px) {
.gradient-custom-2 {
border-top-right-radius: .3rem;
border-bottom-right-radius: .3rem;
}

.gradient-custom {
border-top-right-radius: .3rem;
border-bottom-right-radius: .3rem;
}
}
