.input {
    /*position: absolute;
    top: 40%;
    display: flex;
    align-items: center;
    width: 50vw;*/
    text-align: center;
  }
  
  
  .button {
    height: 10vh;
    border: none;
  }
  
    
  #email {
    width: 75%;
    background: aliceblue;
    font-family: inherit;
    color: #737373;
    letter-spacing: 1px;
    text-indent: 5%;
    border-radius: 15px 0 0 15px;
  }
   
  
  #submit {
    background: #F1718B;
    font-family: inherit;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    border-radius: 10px;
	padding:0px 25px 0px 25px;
    cursor: pointer;
    transition: background .3s ease-in-out;
  }
    
  
  #submit:hover {
    background: #EB2B51;
  }
    
  
  input:focus {
    outline: none;
    outline: 2px solid #0F9294;
    box-shadow: 0 0 2px rgb(12, 117, 119);
  }