/* Modal */
.modal {
  position: fixed;
  height: 100dvh;
  width: 100dvw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 101;
  display: none;
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px;
}

.modal-content {
  position: relative;
  overflow: auto;
  background-color: white;
  width: fit-content;
  margin-left: auto;
  animation-name: slideIn;
  animation-duration: 0.4s;
  animation-timing-function: linear;
  height: 100%;
  padding-top: 10px;
}

.modal-content footer {
  /* text-align: end; */
  margin-left: 30px;
  margin-right: 30px;
  font-size: 14px;
  margin-bottom: 10px;
}

.modal-content footer a {
  font-weight: 700;
  color: black;
}

.closing-mark {
  display: block;
  text-align: end;
  font-size: 25px;
  font-weight: bolder;
  margin-left: auto;
  margin-right: 15px;
  cursor: pointer;
  width: fit-content;
}

.closing-mark:hover {
  color: rgb(145, 145, 145);
}

@keyframes slideIn {
  from {
    right: -800px;
    opacity: 0;
  }

  to {
    right: 0;
    opacity: 1;
  }
}

@keyframes slideOut {
  to {
    right: -800px;
    opacity: 0;
  }

  from {
    right: 0;
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
  .sign-up {
    display: none;
  }

  .modal {
    padding: 0;
  }

  .modal-content {
    width: 100%;
  }

  #google-sign-up-form {
    width: 100%;
    height: 2250px;
  }
}
