html, body {
    margin: 0;
    padding: 0;
    height:100vh;
    width:100vw;
    overflow-x: none;
  }

  table {
    width: -webkit-fill-available;
  }

  tr > th {
    font-size: 12px;
  }

  td > input {
    height: 20px;
    width: 100%;
  }

  select {
    width: 100%;
    font-size: 12px;
    color: #728FCE;
    border: none;
  }

  .form {
    --width-of-input: 100%; 
    --border-height: 1px;
    --border-before-color: rgba(221, 221, 221, 0.39);
    --border-after-color: #5891ff;
    --input-hovered-color: #4985e01f;
    position: relative;
    width: var(--width-of-input);
  }
  /* styling of Input */
  .input {
    color: #728FCE;
    font-size: 12px; /* 0.9rem */
    background-color: transparent;
    width: 100%;
    height: 12px;
    box-sizing: border-box;
    padding-inline: 0.5em;
    padding-block: 0.7em;
    border: none;
    border-bottom: var(--border-height) solid var(--border-before-color);
  }
  /* styling of animated border */
  .input-border {
    position: absolute;
    background: var(--border-after-color);
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.3s;
  }
  /* Hover on Input */
  input:hover {
    background: var(--input-hovered-color);
  }

  input:focus {
    outline: none;
  }
  /* here is code of animated border */
  input:focus ~ .input-border {
    width: 100%;
  }

  .login {
    padding: 1.3em 3em;
    font-size: 12px;
    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;
  }

  .login:hover {
    background-color: #728FCE; /* #23c483 */
    box-shadow: 0px 15px 20px rgba(114, 143, 206, 0.4); /* 46, 229, 157, 0.4 */
    color: #fff;
    transform: translateY(-7px);
  }

  .login:active {
    transform: translateY(-1px);
  }
