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


/* Global styles for the error page */
.error,
.error * {
  box-sizing: border-box;
}

.error {
  background: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rectangle-1 {
  background: #ffffff;
  border-radius: 33.62px;
  border: 9px solid #edebeb;
  width: 900px;
  height: 500px;
  box-shadow: 16px 16px 60px 1px rgba(116, 112, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flex container for the image and text content */
.content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

/* Styling for the image */
.undraw-under-construction-c-2-y-1-1 {
  border-radius: 17px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* Separator line */
.separator {
  width: 1px;
  height: 300px;
  background: #000;
  opacity: 0.2;
}

/* Styling for the text content */
._503-website-under-construction {
  color: #000000;
}

._503-website-under-construction-span {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

._503-website-under-construction-span2 {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 10px;
}

/* ✅ Media Query for Responsive Design */
@media (max-width: 768px) {
  .rectangle-1 {
    width: 90%;
    height: auto;
    padding: 20px;
  }

  .content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .separator {
    display: none;
  }

  .undraw-under-construction-c-2-y-1-1 {
    width: 70%;
  }
}
