* {
    box-sizing: border-box;
  }
  input {
    width: 450px;
    height: 3.5vh;
    margin-bottom: 1rem;
    outline: none;
    color: white;
    border: 30px;
    box-shadow: inset 0 0 0 1px rgba(170, 170, 170, 0.3);
    background: rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border-radius: 3px;
    min-height: 40px;
    padding-left: 10px;
  }
  input:focus {
    box-shadow: inset 0 0 0 2px blueviolet;
    outline: none!important;
  }
  form label {
    font-weight:bold;
    }