
:root {
  --accent:#F25C05;
  --font: "Poppins", sans-serif;
  --font-title: "Playfair Display", serif;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background-color: #faf7f5;

}

/* HEADER */
.site-header {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.logo img { height: 100px; display: block; }


#primary_nav_wrap ul {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

#primary_nav_wrap ul li a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 6px;
  display: inline-block;
  transition: color .18s ease;
  font-family: var(--font-title);
  position: relative;
}

#primary_nav_wrap ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  transform-origin: center;
  transition: transform .22s ease;
}

#primary_nav_wrap ul li:hover > a::after {
  transform: translateX(-50%) scaleX(1);
}



body {
    font-family: 'Georgia', serif;
    background: #faf7f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width:1200px;
margin-top:8% ;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}



.image-section {
   background: linear-gradient(#bc5214a7),
              url('https://i.pinimg.com/originals/d2/6b/35/d26b3573db1a1a77e3a763702a0db0f2.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.bread-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.image-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.image-section p {
  font-size: 16px;
  opacity: 0.95;
}

.form-section {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h2 {
  color: #8b4513;
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #8b4513;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #F25C05;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
}


.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember-forgot label {
  display: flex;
  align-items: center;
  color: #666;
  cursor: pointer;
}

.remember-forgot input[type="checkbox"] {
  margin-right: 6px;
}

.remember-forgot a {
 border-color: #F25C05;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

/* ----------- BOTÓN ----------- */
.btn-login {
  width: 100%;
  padding: 14px;
   background: linear-gradient(135deg, #F25C05 );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

/* ----------- REGISTRO ----------- */
.register-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}

.register-link a {
  color: #F25C05 ;
  text-decoration: none;
  font-weight: bold;
}

.register-link a:hover {
  text-decoration: underline;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .image-section {
    padding: 30px;
  }

  .bread-icon {
    font-size: 60px;
  }

  .image-section h1 {
    font-size: 24px;
  }

  .form-section {
    padding: 30px 25px;}}