body {
  background-color: #12b5f3;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "IBM Plex Sans Arabic", serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  background-color: rgb(255 255 255 / 10%);
  padding: 2rem;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-style: solid;
  border-color: #ffffff45;
}

.profile-pic {
  background-image: url(../images/default_user.png);
  background-size: cover;
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #12b5f3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 30px;
  cursor: pointer;
  overflow: visible;
  border: 3px solid white;
}

.profile-pic input[type="file"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
}

.profile-pic::after {
  content: "+";
  font-size: 20px;
  color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #007bb5;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
}

.form-control {
  border-radius: 50px;
  padding: 10px 20px;
}

.btn-submit {
  border-radius: 50px;
  padding: 10px 20px;
  width: 50%;
  background-color: #12b5f3;
  color: white;
  font-weight: bold;
}

.btn-submit:hover {
  background-color: #1c89b2;
  color: #fff;
}

div > div.swal2-actions {
  width: 100%;
  justify-content: flex-start;
  padding-left: 20px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  color: white;
  display: none;
}

.overlay-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  direction: rtl;
}

.spinner {
  border: 4px solid transparent;
  border-top: 4px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  color: #fff;
  text-align: center;
  position: fixed;
  padding: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  line-height: 2.5;
}

.footer-text {
  margin: 0;
  font-size: 14px;
  color: unset;
  text-decoration: none;
}

.footer-container {
  background-color: #11123370;
  border-radius: 5rem;
  max-width: max-content;
  margin: 0 auto;
  padding: 0 2rem 0 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 0.7rem;
  z-index: 9999;
}
