body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#popup-container {
  display: none;
  /* Hide by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popup-content {
  position: relative;
  background: #fff;
  padding: 2px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 90%;
  width: 800px;
  margin: 0 10px;
}

#popup-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

#close-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  background-color: rgba(255, 0, 0, 0.7);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 10;
}

#close-icon:hover {
  background-color: rgba(255, 0, 0, 1);
}

@media (min-width: 769px) {
  #close-icon {
    top: 8px;
    right: 8px;
  }
}

#close-icon:hover {
  color: rgb(43, 11, 11);
}

@media (max-width: 768px) {
  #popup-content {
    width: 70%;
    padding: 8px;
  }

  #popup-content img {
    width: 100%;
  }

  #close-icon {
    font-size: 20px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  #popup-content {
    width: 95%;
    padding: 4px;
  }

  #close-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
  }
}

.login-top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f9fa;
  margin: 0;
}

.login-container {
  max-width: 400px;
  width: 100%;
}

.register-container {
  max-width: 600px;
  width: 100%;
}

.login-form {
  background-color: #ffffff;
}

.login-form h1 {
  color: #015fc9;
}

.registration-form {
  background-color: #ffffff;
}

.registration-form h1 {
  color: #015fc9;
}

.form-control {
  height: 45px;
  font-size: 16px;
}

.btn-primary1 {
  background-color: #015fc9;
  border: none;
  font-size: 16px;
  font-weight: bold;
}

.btn-primary1:hover {
  background-color: #015fc9;
}

.btn-primary1:active {
  background-color: #598607 !important;
}

p {
  margin: 0;
  color: #6c757d;
}

a {
  color: #015fc9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
