.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.568);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .popup-box {
    background: #ffffff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .popup-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
	font-size: 1em;
	border: 2px solid #cccccc;
	border-radius: 4px;
	background-color: #ffffff;
  }
  
  .popup-box button {
    background-color: #013129;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 0.3em;
    font-weight: bold;
  }
  
  .fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  