.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .modal[open] {
    display: flex;
  }
  .model-inner {
    background-color: white;
    border-radius: 0.5em;
    max-width: 600px;
    padding: 2em;
    margin: auto;
  }
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid black;
  }
  #modal-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: black;
    opacity: 0.5;  
  }

  .modal-email{
      padding-top: 25px;
  }

  .modal-email .input{
    border-bottom: 1px solid black!important;
    border-top: none!important;
    border-left: none!important;
    border-right: 1px solid black!important;
    width: 100%!important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .modal-email .button{
      margin-top: 20px;
  }