* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(rgba(28, 13, 14, 0.749), rgba(39, 38, 39, 0.777)),
    url('../images/background.webp') center center / cover no-repeat;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 34px;
}

.center-box {
  width: 100%;
  max-width: 430px;
  text-align: center;
}

.logo-wrap {
  margin-bottom: 10px;
}

.logo-img {
  width: 400px;
  display: block;
  margin: 0 auto;
  opacity: 0.6;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-wrap {
  width: 100%;
  height: 55px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.input-wrap input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 15px;
}

.input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.cta {
  margin-top: 20px;
  height: 55px;
  border: none;
  border-radius: 50px;
  background: #cc522ae6;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.help-links {
  margin-top: 15px;
  font-size: 13px;
  text-align: left;
}

.help-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.help-links a:hover {
  opacity: 0.8;
}