button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 10px;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  /* Base Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /* transition: opacity 0.3s ease; */
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  /* Inner content style with animation */
  .modal-content {
    background-color: #fff;
    margin: 7% auto;
    padding: 13px;
    border: 1px solid #888;
    width: 30%;
    border-radius: 8px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  /* When modal is active */
  .modal.show {
    display: block;
  }
  
  .modal.show .modal-content {
    transform: translateY(0px);
    opacity: 1;
  }
  
  .closeModalBtn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    /* margin: -44px 14px; */
  }
  
  .closeModalBtn:hover,
  .closeModalBtn:focus {
    color: black;
    text-decoration: none;
  }

  .login-container {
    display: flex;
    flex-direction: column;
  }

  .font-18-center {
    font-size: 18px;
    text-align: center;
  }
  /* .heading {
    display: flex;
    justify-content: space-around;
    align-items: center;
  } */

@media (max-width: 768px) {
  .modal-content {
    background-color: #fff;
    margin: 12% 21%;
    padding: 13px;
    border: 1px solid #888;
    width: 50%;
    font-size: 14px;
  }
}
@media (max-width: 510px) {
  .modal-content {
    background-color: #fff;
    margin: 23% 10%;
    padding: 13px;
    border: 1px solid #888;
    width: 77%;
    font-size: 14px;
  }
}


