/* Created by Tivotal */

/* Google Fonts(Poppins) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.container .img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.container header {
  font-size: 60px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.container p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: center;
}

.container .time-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 10px;
  flex-wrap: wrap;
}

.container .time-content .time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container .time-content .time .number {
  font-size: 40px;
  font-weight: 500;
  color: #000;
}

.container .time-content .time .text {
  font-size: 12px;
  color: #4070f4;
  font-weight: 500;
}

.container .email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
  padding: 0 10px;
}

.container .email-content p {
  font-size: 13px;
}

.container .email-content .input-box {
  display: flex;
  height: 40px;
  align-items: center;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  gap: 10px;
}

.container .email-content .input-box input {
  height: 100%;
  width: 100%;
  padding: 0 15px;
  font-weight: 500;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
}

.container .email-content .input-box input::placeholder {
  color: #000;
}

.container .email-content .input-box .btn {
  height: 100%;
  padding: 0 20px;
  white-space: nowrap;
  outline: none;
  border: 1px solid #4070f4;
  border-radius: 4px;
  cursor: pointer;
  background: #4070f4;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease;
}

.container .email-content .input-box .btn:hover {
  background: #2660ff;
}

@media (max-width: 450px) {
  .container header {
    font-size: 35px;
  }
}
.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1000px;
  height: 200px;
}
.logo-content img {
  width: 440px;
  height: 240px;
  position: relative;
  object-fit: cover;
}