
  input, textarea {
    width: 5000px;
    padding: 10px;
    margin: 5px;
  }
  button {
    padding: 10px 20px;
    background: #e40c17;
    color: rgb(80, 15, 15);
    border: none;
    cursor: pointer;
  }
  

  .popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(100, 95, 95, 0.5);
  }
  
  .popup-content {
    background: rgb(239, 239, 240);
    padding: 20px;
    margin: 15% auto;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.3s ease;
  }
  
  .close {
    float: right;
    font-size: 20px;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
  }
  


 