body {
  min-height: 100vh;
  background: #eef1f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.recupera-container {
  width: 1120px;
  max-width: 100%;
  min-height: 670px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* PANEL IZQUIERDO */
.recupera-panel {
  width: 53%;
  padding: 70px 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recupera-icono {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eef4e8;
  color: var(--primary-green-login, #4e9d23);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 22px;
}

.recupera-panel h1 {
  text-align: center;
  font-size: 28px;
  color: #343840;
  margin-bottom: 14px;
}

.recupera-panel h1 span {
  color: var(--primary-green, #2d8b0c);
}

.recupera-texto {
  max-width: 380px;
  margin: 0 auto 36px;
  text-align: center;
  color: #7b8590;
  font-size: 15px;
  line-height: 1.7;
}

.recupera-form {
  width: 100%;
}

.recupera-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #30343b;
}

.input-box {
  position: relative;
  margin-bottom: 24px;
}

.input-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa3ad;
  font-size: 18px;
}

.input-box input {
  width: 100%;
  height: 58px;
  border: 1px solid #d8dde2;
  border-radius: 8px;
  outline: none;
  padding: 0 18px 0 58px;
  font-size: 15px;
  color: #333;
  background: #fff;
}

.input-box input:focus {
  border-color: var(--primary-green-login, #4e9d23);
  box-shadow: 0 0 0 3px rgba(78,157,35,.12);
}

.btn-enviar {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to bottom, #2f8f0d, #126400);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(23,103,0,.25);
  transition: .25s;
}

.btn-enviar:hover {
  transform: translateY(-2px);
}

.separador {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 30px 0;
  color: #8d96a0;
}

.separador span {
  width: 95px;
  height: 1px;
  background: #d7dce0;
}

.separador small {
  font-weight: 700;
}

.btn-regresar {
  width: 100%;
  height: 50px;
  border: 1px solid var(--primary-green-login, #4e9d23);
  border-radius: 7px;
  color: var(--primary-green, #2d8b0c);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  transition: .25s;
}

.btn-regresar:hover {
  background: #f1f8ed;
}

.contacto {
  text-align: center;
  margin-top: 26px;
  color: #78818b;
  font-size: 13px;
}

.contacto a {
  color: var(--primary-green, #2d8b0c);
  text-decoration: none;
  font-weight: 700;
}

/* PANEL DERECHO */
.marca-panel {
  width: 47%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 20%, #fff 0 34%, transparent 35%),
    linear-gradient(135deg, #f7f7f7, #e5e8e8);
}

.marca-contenido {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding-top: 92px;
}

.marca-contenido img {
  width: 275px;
  max-width: 75%;
  margin-bottom: 32px;
}

.linea-verde {
  width: 38px;
  height: 2px;
  background: var(--primary-green-login, #4e9d23);
  margin-bottom: 24px;
}

.marca-contenido p {
  color: #59616b;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.marca-contenido span {
  color: var(--primary-green, #2d8b0c);
}

.hoja-fondo {
  position: absolute;
  inset: auto 0 0 0;
  height: 320px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(120deg, #0e4f05, #2b8b0b 48%, #7fc142);
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
}

.marca-panel::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  left: -150px;
  top: -265px;
  z-index: 2;
}

.marca-panel::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  left: -90px;
  top: -210px;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .recupera-container {
    flex-direction: column;
  }

  .recupera-panel,
  .marca-panel {
    width: 100%;
  }

  .recupera-panel {
    padding: 55px 28px;
  }

  .marca-panel {
    min-height: 430px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .recupera-panel h1 {
    font-size: 25px;
  }

  .separador span {
    width: 70px;
  }
}