/* From Uiverse.io by Smit-Prajapati */ 
.uiverse .container {
    max-width: 350px;
    height: fit-content;
    /* background: #F8F9FD;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%); */
    border-radius: 40px;
    padding: 25px 35px;
    border: 3px solid #f0f0f0;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
    /* margin: 20px; */
}
  
  .uiverse .heading {
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    color: rgb(16, 137, 211);
  }
  
.uiverse .form {
    margin-top: 20px;
  }
  
  .uiverse .wave-group {
    position: relative;
    margin: 15px 0;
  }
  
  .uiverse .wave-group .input {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    height: fit-content;
    width: 200px;
    border: none;
    border-bottom: 1px solid #afafaf;
    background: transparent;
  }
  
  .uiverse .wave-group .input:focus {
    outline: none;
  }
  
  .uiverse .wave-group .label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    display: flex;
  }
  
  .uiverse .wave-group .label-char {
    transition: 0.2s ease all;
    transition-delay: calc(var(--index) * .05s);
  }
  
  .uiverse .wave-group .input:focus ~ label .label-char,
  .uiverse .wave-group .input:not(:placeholder-shown) ~ label .label-char{
    transform: translateY(-20px);
    font-size: 14px;
    color: #152440;
  }
  
  .uiverse .wave-group .bar {
    position: relative;
    display: block;
    width: 200px;
  }
  
  .uiverse .wave-group .bar:before,
  .uiverse .wave-group .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #152440;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
  }
  
  .uiverse .wave-group .bar:before {
    left: 50%;
  }
  
  .uiverse .wave-group .bar:after {
    right: 50%;
  }
  
  .uiverse .wave-group .input:focus ~ .bar:before,
  .uiverse .wave-group .input:focus ~ .bar:after {
    width: 50%;
  }
  

  .uiverse  .form .submit-button {
    display: block;
    width: 100%;
    font-weight: bold;
    background: linear-gradient(45deg, #612087 0%, #8f42bd 100%);
    color: white;
    padding-block: 15px;
    margin: 20px auto;
    border-radius: 20px;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
    border: none;
    transition: all 0.2s ease-in-out;
  }
  
  .uiverse  .form .submit-button:hover {
    transform: scale(1.03);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
  }
  
  .uiverse  .form .submit-button:active {
    transform: scale(0.95);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
  }
  




  