* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.left {
  flex: 1;
  border-top-left-radius: 100px;
  overflow: hidden;
}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right {
  flex: 1.5;
  background: linear-gradient(45deg, #e1edc9 50%, #ffffff 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.coming-soon {
  text-align: center;
  position: relative;
}

.ftl-image {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
}

.close-icon {
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
}

.coming-soon p {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}



@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .left, .right {
    flex: unset;
    width: 100%;
    border-top-left-radius: 0;
    min-height: 300px;
  }
  .left img {
    height: 250px;
    border-top-left-radius: 40px;
  }
  .right {
    min-height: 350px;
    padding: 40px 0;
  }
  .close-icon {
    right: 10px;
    top: 10px;
  }
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .left, .right {
    width: 100%;
    min-height: 180px;
    border-top-left-radius: 0;
  }
  .left img {
    height: 150px;
    border-top-left-radius: 20px;
  }
  .right {
    min-height: 220px;
    padding: 20px 0;
    background: linear-gradient(45deg, #e1edc9 70%, #ffffff 30%);
  }
  .ftl-image {
    width: 140px;
    margin-bottom: 10px;
  }
  .coming-soon p {
    font-size: 16px;
    margin-top: 8px;
  }
  .close-icon {
    width: 28px;
    height: 28px;
    right: 5px;
    top: 5px;
  }
}

