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

.redefinicao-bg {
  background: 
    linear-gradient(135deg, rgba(238, 245, 238, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%),
    url(../img/bg-nutrition.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.redefinicao-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.logo-img {
  height: 55px;
  width: auto;
}

.redefinicao-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 25px;
}

.padlock-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.padlock-img {
  height: 85px;
  width: auto;
}

.redefinicao-text {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
  max-width: 280px;
}

.redefinicao-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.redefinicao-email {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #588a66;
  border-radius: 8px;
  font-size: 13.5px;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.redefinicao-email:focus {
  border-color: #437d53;
  box-shadow: 0 0 0 2px rgba(67, 125, 83, 0.15);
}

.redefinicao-email::placeholder {
  color: #666;
}

.redefinicao-button {
  background-color: #437d53;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-family: 'Lora', serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 5px;
}

.redefinicao-button:hover {
  background-color: #356342;
}

.redefinicao-button-back {
  background: none;
  border: none;
  color: #437d53;
  font-family: 'Lora', serif;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 5px;
  transition: opacity 0.2s;
}

.redefinicao-button-back:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .redefinicao-card {
    max-width: 460px;
    padding: 45px 40px;
  }

  .logo-img {
    height: 60px;
  }

  .redefinicao-title {
    font-size: 22px;
  }

  .padlock-img {
    height: 95px;
  }

  .redefinicao-text {
    font-size: 15px;
    max-width: 320px;
  }

  .redefinicao-email {
    padding: 14px 16px;
    font-size: 14px;
  }

  .redefinicao-button {
    padding: 14px;
    font-size: 16px;
  }

  .redefinicao-button-back {
    font-size: 15px;
  }
}