/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


#ggc-dialog-modal {
  width: 500px;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 20px;
}
#ggc-dialog-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
#ggc-dialog-modal #ggc-dialog-close {
  padding: 5px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  fill: #000;
}
#ggc-dialog-modal #ggc-dialog-close:hover {
  fill: blue;
}


#ggc-dilog-content{
  padding: 50px 20px;
}

#ggc-submit {
  user-select: none;
}

#ggc-input {
  padding: 0 10px;
  height: 30px;
  border: 1px solid rgb(174, 174, 174);
  border-radius: 5px;
}

#ggc-form {
  display:flex;
  flex-direction:column;
  gap: 40px;
}