/* ================================
   RECOVER PAGE
================================ */

.recPage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
}

/* ================================
   GREEN BAR
================================ */

.recBar {
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 20px auto;
  height: 65px;
  background: #0aa64f;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.recBar__text {
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
}

/* ================================
   CONTENT
================================ */

.recContent {
  flex: 1;
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  box-sizing: border-box;
}

/* ================================
   ICON
================================ */

.recIcon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recIcon__img {
  width: 100%;
  max-width: 420px;   /* Desktop */
  height: auto;
}

/* ================================
   FORM BOX
================================ */

.recBox {
  width: 380px;
}

.recBox__title {
  color: #0066b3;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* ================================
   STATUS MESSAGES
================================ */

.recStatus {
  background-color: #ffffff;
  border: 1px solid #b9e6c8;
  color: #0a7a35;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}

.recErrors {
  background-color: #ffffff;
  border: 1px solid #f2b2b2;
  color: #b10000;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* ================================
   FORM
================================ */

.recForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recField {
  width: 100%;
  margin-bottom: 14px;
}

.recLabel {
  display: block;
  font-size: 14px;
  color: #333333;
  margin-bottom: 6px;
}

/* ================================
   INPUTS
================================ */

.recInput {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 2px solid #0b78c6;
  outline: none;
  font-size: 14px;
  background-color: #ffffff;
  transition: 0.2s ease;
}

.recInput:focus {
  border-color: #0aa64f;
}

/* ================================
   BUTTON
================================ */

.recBtn {
  align-self: center;
  background-color: #0b78c6;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

.recBtn:hover {
  background-color: #095fa3;
}

/* ================================
   LINK ABAJO DEL BOTÓN
================================ */

.recLoginLink {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  color: #555;
}

.recExpira {
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

.recLoginLink a {
  color: #0b78c6;
  font-weight: 600;
  text-decoration: none;
}

.recLoginLink a:hover {
  text-decoration: underline;
}

/* ================================
   BOTTOM BAR
================================ */

.recBottomBar {
  height: 40px;
  background-color: #0b78c6;
  width: 100%;
  margin-top: auto;
}

/* ================================
   RESPONSIVE — TABLET
================================ */

@media (max-width: 1024px) {

  .recContent {
    gap: 60px;
  }

  .recIcon__img {
    max-width: 320px;
  }

}

/* ================================
   RESPONSIVE — MOBILE
================================ */

@media (max-width: 768px) {

  .recBar {
    width: calc(100% - 32px);
    padding: 0 20px;
    height: 58px;
  }

  .recBar__text {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  .recContent {
    flex-direction: column;
    gap: 30px;
    padding: 30px 16px;
    width: 100%;
  }

  .recIcon__img {
    max-width: 220px;   
  }

  .recBox {
    width: 100%;
    max-width: 380px;
  }

}
