/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* The Model Header */
  .modal-header {
    padding: 2px 16px;
    background-color: #7F5228;
    color: #DDAE06;
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #DDAE06;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #7F5228;
    width: 50%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close-button {
    color: #DDAE06;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    font-size: 30px;
    text-decoration: none;
    cursor: pointer;
  }

  /* The tab header */
.modal-tabs {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #2D4100;
  }

  .auth-tab {
    flex: 1;
    padding: 15px;
    margin: 5px;
    background-color: #DDAE06;
    color: #7F5228;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
  }