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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.logo {
  text-align: center; /* Horizontally centers the image */
  margin: 20px 0; /* Adds spacing (optional) */
}

/* If you also want vertical centering in a flex container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers child elements horizontally */
  justify-content: center; /* Centers child elements vertically (if needed) */
}

/* Coming Soon Secrion */
.container {
  display: flex;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.container .image {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-color: white;
  background-blend-mode: difference;
  /* soft-ligt, overlay, difference */
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.container header {
  font-size: 60px;
  color: black;
  font-weight: 600;
  text-align: center;
}
.container p {
  font-size: 16px;
  font-weight: 400;
  color: black;
  max-width: 550px;
  text-align: center;
}
.container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  column-gap: 20px;
}
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.input-box button:hover {
  background-color: #fff;
  color: #0d6a81;
}
.logo {
  position: absolute;
  top: 15px;
  left: 10px;
}
.logo a {
  color: #fff;
  padding: 3px 5px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  border: 2px solid #fff; 
  border-radius: 4px;
}

.logo a:hover {
  color: #0d6a81;
  border-color: #0d6a81;
  transition: all 0.5s ease;
}

@media screen and (max-width: 320px) {
  .container header {
    font-size: 30px;
  }
  .container p {
    font-size: 12px;
  }
  .logo a {
    display: none;
  }
  .input-box input {
    margin-left: 10px;
  }
  .input-box button {
    margin-right: 10px;
    padding: 0 8px;
  }
}

@media screen and (max-width: 375px) {
  .container header {
    font-size: 40px;
  }
  .container p {
    font-size: 14px;
  }
  .logo a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 425px) {
  .container header {
    font-size: 40px;
  }
  .logo a {
    font-size: 1rem;
  }
}
