/* Center the login button */
button#login-button {
    display: block;
    /* margin: 50px auto; */
    /* font-size: 20px; */
    /* font-weight: bold; */
    /* background-color: #fff; */
    /* color: #757575; */
    /* border: 1px solid #dadce0; */
    border-radius: 5px;
    /* padding: 10px 20px; */
    cursor: pointer;
  }

  button#login-button:hover {
    opacity: 0.8;
  }
  
  /* Modal styles */
  .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: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border-radius: 5px;
    width: 400px; /* Fixed width */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); /* Add shadows */
  }
  
  /* Close button styles */
  .close {
    color: #757575;
    float: right;
    font-size: 24px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Form styles */
  form {
    margin-top: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    /* font-weight: bold; */
  }
  
  input[type="email"],
  input[type="text"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #dadce0;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  button[type="submit"],
  button#close-button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    /* font-weight: bold; */
    color: #fff;
    background-color: #1a73e8;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  button[type="submit"]:hover,
  button#close-button:hover {
    background-color: #0d47a1;
  }
  
  #error-message {
    color: #d50000;
    font-size: 14px;
    margin-top: 20px;
  }

  #submit-button:disabled {
    background-color: #608dc7;
    color: rgb(255, 255, 255);
  }


  @media (max-width: 1000px) {
    #loginbuttondiv  {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 800px) {
  .modal-content {
    width: 300px;
  }

  @media (max-width: 650px) {
    #loginbuttondiv  {
      margin-bottom: 0px;
    }
  }


}