html {
  height: 100%;
}
body {
  /* background: url("/images/2795232.png") no-repeat top fixed; */
  /* background-color: #0087c3; */
  background: -webkit-linear-gradient(to right, #103f91, #1a5cbd, #2b7cd3, #41a5ee);
  background: linear-gradient(to right, #103f91, #1a5cbd, #2b7cd3, #41a5ee);
  background-size: cover;
  height: 100%;
}

.h-200px { 
  height: 200px !important; 
}

.h-70px {
  height: 70%!important;
}

.mh-200px { 
  max-height: 200px !important; 
}
.min-h-200px { 
  min-height: 200px !important; 
}

.auth-container {
  position: relative;
  padding: 15px;
}

.auth-card {
  width: 100%;
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  background-color: #ffffff;
  /* border-radius: 12px; */
}
.auth-card .input-group-text {
  color: #777;
  background-color: #fff;
}
.auth-card .input-group:focus-within .input-group-prepend .input-group-text {
  border-color: #80bdff;
}
.auth-card .input-group-prepend ~ .form-control {
  border-left: 0;
  padding-left: 0;
}

.auth-btn-icon {
  border: none;
  padding: 5px;
  background-color: unset;
  position: relative;
  font-size: 1.5rem;
  color: white;
}
.auth-btn-icon span {
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 0.7rem;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-weight: bold;
}
.auth-line-btn {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.auth-line-btn i{
  font-size: 2rem;
  font-weight: normal;
}

.text-lg {
  font-size: 3rem;
}

.rounded-xl {
  border-radius: 18px;
}

@media (max-width: 576px) { /* Small screens */
  .text-sm-white {
    color: white !important;
  }
}

@media (min-width: 768px) {
  .auth-card {
    width: 75%;
    max-width: 800px;
  }
}