.login-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  align-items: center;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 40px 20px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: black;
}

/* {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

:hover {
  background: #005177;
} */

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  text-align: center;
}

#Footer {
  z-index: -1;
  position: absolute !important;
  left: 0;
  right: 0;
}

#login-modal input {
  width: 100%;
  height: 50px;
  margin: 0;
}
#login-modal p {
  text-align: center;
  font-weight: 400;
}
#login-modal #send-code,
#login-button {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin: 10px 0px;
  background-color: #ca8f65;
  padding: 10px;
  color: #000;
}
#close-modal {
  width: 100%;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ca8f65;
  color: #000;
  text-align: center;
  cursor: pointer;
}

#open-login-modal {
  padding: 10px 20px;
  color: #000;
  background-color: #ca8f65;
}

.success-message {
  color: #ca8f65;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  text-align: center;
}

.boxButton {
  position: relative;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 0.6s linear infinite;
  position: absolute;
  top: 15px;
  right: 20px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cursor-pointer {
  cursor: pointer;
}
