body {
  background: linear-gradient(180deg, #0000 0%, #665393 8%, #4b3a75 40%, #5e429f 100%);
}

body::after {
    content: '';
    z-index: -10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#login {
  min-height: 100vh;
}

.main {
    position: relative;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../image/noise.jpg);
    z-index: -1;
    opacity: .13;
    background-size: 450px;
}

.login-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    height: 6.5rem;
}

.login-header::after {
    content: '';
    z-index: -9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgb(25 20 37) 20%, rgba(255,255,255,0) 70%);
}

.login-logo {
    position: relative;
    background: #9e9e9e70;
    width: 100px;
    height: 100px;
}

.login-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../image/noise.jpg);
    z-index: -1;
    opacity: .15;
    background-size: 450px;
    border-radius: 50% !important;
}

.login-logo img {
    padding: 0px 7px 0px 26px;
    opacity: .7;
    max-width: 100px;
}

.login-image-cont {
  min-height: 50vh;
  overflow: hidden;
}

.login-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.text_login {
    position: relative;
    background-color: rgb(255 255 255 / 30%) !important;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    border-radius: 1.85rem !important;
}

.text_login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../image/noise.jpg);
    z-index: -1;
    opacity: .15;
    background-size: 450px;
    border-radius: 1.85rem !important;
}

.text_login {
    display: block;
  }
  
  .text_login label {
    margin-bottom: 0.5rem;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
  }
  
  .text_login input, .text_login textarea, .text_login select {
    display: block;
    width: 100%;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: #0000000d;
    background-clip: padding-box;
    border: none;
    border-bottom: 2px solid #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.75rem 0.75rem 0 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .text_login input:focus, .text_login textarea:focus, .text_login select:focus {
    color: var(--bs-body-color);
    background-color: #0000000d;
    border-color: inherit;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(54 38 91 / 45%);
  }
  
  .text_login select option {
    background-color: #aa8a32;
  }
  
  .text_login p:has(select) {
    position: relative;
  }
  
  .text_login p:has(select)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23303449' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
  }
  
  .text_login textarea {
    min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
    max-height: 6rem;
  }

  .text_login p {
    margin-bottom: 0.5rem;
  }

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 2px;
    background: #fff;
}

@media (min-width: 350px) {

  .login-image {
    left: calc(50% - 175px);
    width: 100%;
    max-width: 350px;
  }

}

@media (min-width: 992px) {

	.login-image-cont {
    overflow: visible;
    min-height: 85vh;

}

.login-image {
  left: calc(50% - 250px);
  width: 100%;
  max-width: 500px;
}

}