button.button {
    padding: 1.3em 3em;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }
  
  button.button:hover {
    background-color: #2391c4;
    box-shadow: 0px 15px 20px rgba(46, 49, 229, 0.4);
    color: #fff;
    transform: translateY(-7px);
  }
  
  button.button:active {
    transform: translateY(-1px);
  }
  .title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: white;
  }
.card {
    margin-top: 100px;
    max-width: 400%;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background: linear-gradient(220.55deg, #FFED46 0%, #ff7e7e 100%);
    box-shadow: 5.9px 11.8px 11.8px hsl(0deg 0% 0% / 0.32);
  }
  
  .card-header {
    background: linear-gradient(220.55deg, #292929 0%, #181818 100%);
    border-bottom: none;
    text-align: center;
    padding-top: 20px;
  }
  
  .card-body {
    padding: 20px;
  }
  .form__group {
    position: relative;
    padding: 20px 0 0;
    width: 100%;
    max-width: 180px;
  }
  
  .form__field {
    font-family: inherit;
    width: 175%;
    border: none;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 17px;
    color: #fff;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
    font-size: 17px;
    cursor: text;
    top: 20px;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #9b9b9b;
    pointer-events: none;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #ffc548, #ef5338);
    border-image-slice: 1;
  }
  
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #ef7238;
    font-weight: 700;
  }
  
  /* reset input */
  .form__field:required, .form__field:invalid {
    box-shadow: none;
  }