* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 48px;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 540px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 28px;
  height: 28px;
}

.brand span {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #000000;
}

.subtext {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

.email-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.email-section label {
  font-size: 14px;
  font-weight: 800;
  color: #374151;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 130px 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #111827;
  background-color: #e9e9e9;
  border: none;
  border-radius: 10px;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #9ca3af;
}

.input-wrapper button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background-color: #EF8F52;
  transition: all 0.2s ease;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2;
}

.input-wrapper button:hover {
  background-color: #ee630d;
}

.hint {
  font-size: 10px;
  font-weight: 400;
  color: #868d9a;
}

.right img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .container {
    gap: 60px;
    padding: 32px;
  }

  .left {
    gap: 20px;
    max-width: 420px;
  }

  h1 {
    font-size: 40px;
  }

  .subtext {
    font-size: 14px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 24px;
    height: 24px;
  }

  .email-section label {
    font-size: 12px;
  }

  .input-wrapper input {
    padding: 12px 110px 12px 14px;
    font-size: 14px;
  }

  .input-wrapper button {
    padding: 8px 14px;
    font-size: 13px;
  }

  .right img {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  body {
    align-items: flex-start;
  }

  .container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
  }

  .left {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  .right img {
    max-width: 360px;
  }

  .subtext {
    font-size: 13px;
  }
}

