body {
  background: rgb(6, 22, 6);
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 100px solid rgba(7, 80, 53, 0.8);
  width: 800px;
  height: 800px;
  z-index: auto;
  opacity: 0.15;
  top: 15%;
  left: -15%;
  position: fixed;
}
.modal-container {
  /* display: none; */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0);
}

.modal {
  background-color: #fefefe;
  margin: 9% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 400px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.modal-body {
  padding: 20px 0;
}
.modal-body p{
  text-align: center;
  margin-bottom: 0;
}
.modal-body p a{
  font-weight: bold;
  text-decoration: none;
  color: rgba(7, 80, 53, 0.8);
}
form {
  display: flex;
  width: 400px;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  form{
    width: 350px;
  }
  .modal{
    max-width: 340px;
    border-radius: 20px;
    margin-top: 100px;
  }
}
label {
  margin-bottom: 5px;
}

input{
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
button {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 18px;
}

button {
  background-color: #4caf4f;
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}
