@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");


body {
  font-family: "Poppins", sans-serif;
  background: #ececec;
}
.box-area {
  width: 1200px;
}
.right-box {
  padding: 40px 30px 40px 40px;
}
::placeholder {
  font-size: 16px;
}
.rounded-4 {
  border-radius: 20px;
}
.rounded-5 {
  border-radius: 30px;
}

.alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: translateX(-50%);
  background-color: #f44336;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 9999;
}

.alert-in {
  opacity: 1;
  transform: translateY(0);
}

.alert-out {
  opacity: 0;
  transform: translateY(50px);
}

.alert-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-message {
  margin-right: 10px;
}

.alert-close {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
/*==============*/

.modal2 {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog2 {
  max-width: 500px;
  margin: 1.75rem auto;
}

.modal-content2 {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

/*=====================*/

.modal-overlay3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content3 {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.modal-header3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.modal-body3 {
  margin-bottom: 20px;
}

.modal-footer3 {
  display: flex;
  justify-content: flex-end;
}

.modal-button3 {
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal-button-primary3 {
  background-color: #007bff;
  color: white;
}

.modal-button-primary3:hover {
  background-color: #024a97;
}

.modal-button-secondary3 {
  background-color: #6c757d;
  color: white;
}

.modal-button-secondary3:hover {
  background-color: #505050;
}

.modal-close4{
  background-color: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.modal-close4 .fa-times-circle{
  font-size: 16px;
}
.modal-close4 .fa-times-circle:hover{
  color: #007bff;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.loading-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*=====================*/

@media only screen and (max-width: 768px) {
  .box-area {
    margin: 0 10px;
    display: flex;
    flex-direction: column-reverse;
  }
}