.modal {
  display: none;
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal-content {
  background: #396353;
  margin: auto;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfect centering */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 40px;
  cursor: pointer;
  color: red;
}
.modal-content input[type="text"],
.modal-content input[type="hidden"] {
  width: 100%;
  padding: 8px;
  border: 1px solid white; /* full border */
  border-radius: 4px;
  box-sizing: border-box;
  background: transparent;
}

/* Placeholder color */
.modal-content input[type="text"]::placeholder {
  color: white;
  opacity: 1; /* makes sure the color is fully visible */
}

/* Focus effect */
.modal-content input[type="text"]:focus {
  border-color: white;
  outline: none;
  color: white;
}

.modal-content input[type="password"],
.modal-content input[type="hidden"] {
  width: 100%;
  padding: 8px;
  border: 1px solid white; /* full border */
  border-radius: 4px;
  box-sizing: border-box;
  background: transparent;
}

/* Placeholder color */
.modal-content input[type="password"]::placeholder {
  color: white;
  opacity: 1; /* makes sure the color is fully visible */
}

/* Focus effect */
.modal-content input[type="password"]:focus {
  border-color: white;
  outline: none;
  color: white;
}


.modal-content .btn16 {
  background-color: white;
      width: 100%;
      height: 30px;
      border: none;
      outline: none;
      border-radius: 1px;
}
@media (max-width: 1050px) {
      .modal-content {
        width: 100%;
      }
    }

