/* ——— GENERAL ——— */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  background:#e9e3da; /* tono crema igual al de la imagen */
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* ——— CONTENEDOR ——— */
.container{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  padding:20px;
}

/* ——— LOGIN BOX ——— */
.login-box{
  width:380px;
  background:#ffffff;
  padding:45px 40px;
  border-radius:25px;
  box-shadow:0 3px 15px rgba(0,0,0,0.12);
}

.logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

.logo img{
  width:30px;
}

h1{
  text-align:center;
  font-size:35px;
  font-weight:600;
  margin-top:5px;
}
p{
  text-align:center;
  font-size:15px;
  color:#666;
  margin-bottom:25px;
}

/* ——— INPUTS ——— */
.input-group{
  position:relative;
  margin-bottom:15px;
}
.input-group i{
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%);
  color:#888;
}

input{
  width:100%;
  padding:14px 14px 14px 45px;
  border-radius:10px;
  border:1.5px solid #ccc;
  font-size:15px;
}
input:focus{
  border-color:#f57c2c;
  outline:none;
}

.forgot{
  font-size:18px;
  color:#f57c2c;
  text-align:right;
  display:block;
  margin-bottom:16px;
  cursor:pointer;
}

/* ——— BOTÓN LOGIN ——— */
.btn-login{
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#ff7b22;
  color:white;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}
.btn-login:hover{
  background:#e0691b;
}

/* mensaje error */
.msg-error{
  font-size:14px;
  text-align:center;
  color:#d32f2f;
  margin-top:12px;
  display:none;
}

/* ——— IMÁGENES ——— */
/* ——— IMÁGENES COMO EN TU DISEÑO ——— */
.images{
  display:grid;
  grid-template-columns: 180px 300px;
  grid-template-rows: 180px 180px;
  gap:25px;
  align-items:center;
  justify-items:center;
}

/* PEQUEÑAS */
.img-small{
  width:180px;
  height:180px;
  border-radius:22px;
  overflow:hidden;
}

/* GRANDE (VA A LA DERECHA Y OCUPA DOS FILAS) */
.img-large {
  grid-row: span 2;
  width:300px;
  height:400px;   /* altura corregida para verse igual a tu mockup */
  border-radius:26px;
  overflow:hidden;
}

/* IMÁGENES INTERNAS */
.images .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;

  /* animación más rápida */
  animation:zoom 3.6s ease-in-out infinite alternate;
}

/* retrasos INDIVIDUALES (para que no se muevan igual) */
.img-small:nth-child(1) img{ animation-delay:0s; }
.img-small:nth-child(2) img{ animation-delay:1s; }
.img-large img{ animation-delay:0.6s; }

@keyframes zoom{
  0%{ transform:scale(1); }
  100%{ transform:scale(1.1); }
}

