body {
  font-family: 'Roboto', sans-serif;
  background: #F4FDF5;
  margin: 0;
  padding: 0;
}

/* Estructura principal */
.main-container {
  display: flex;
  height: 100vh;
}

/* Panel de información lateral */


.branding {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.branding h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.info-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.info-text ul {
  list-style: none;
  padding-left: 0;
}

.info-text li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Login */
.login-container {
  flex: 1;
  background: #F4FDF5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo h1 {
  margin-top: 10px;
  font-size: 24px;
  color: #2C3E50;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #2C3E50;
}

input {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #CCC;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #27AE60;
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
  outline: none;
}

button {
  padding: 12px;
  background-color: #27AE60;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #219150;
}

.form-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.form-footer a {
  color: #F39C12;
  text-decoration: none;
  transition: color 0.3s;
}

.form-footer a:hover {
  color: #D68910;
}

/* Responsivo */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

  .info-panel {
    flex: none;
    height: 300px;
    padding: 40px 20px;
    text-align: center;
    background-position: center top;
  }

  .login-container {
    flex: none;
    padding: 20px;
  }

  .info-text h1 {
    font-size: 24px;
  }
}


