/* MODAL STYLE */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #0b1c2c;
  margin: 5% auto;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  color: #fff;
}

.close-btn {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 13px;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  background: #112a3d;
  border: 1px solid #1e3a50;
  color: #fff;
  border-radius: 5px;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: #00c3ff;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.note {
  color: red;
  font-size: 12px;
}