/* --- Estructura general --- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* --- Panel Izquierdo --- */
.panel-izquierdo {
  background-color: #f59900;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  text-align: center;
}

.logo-unfv {
  width: 200px;
  display: block;
  margin: 0 auto 15px auto;
}

.logo-fccss {
  width: 450px;
  display: block;
  margin: 0 auto;
}

/* --- Panel Derecho --- */
.panel-derecho {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.panel-derecho h2 {
  margin-bottom: 20px;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  max-width: 350px;
}

label {
  font-size: 14px;
  color: #333;
}

input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

input:focus {
  border-color: #f59900;
}

button {
  background-color: #f59900;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

button:hover {
  background-color: #d88400;
}

/* --- Responsive para móviles --- */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .panel-izquierdo {
    flex: none;
    height: 40vh;
  }

  .panel-derecho {
    flex: none;
    height: 60vh;
  }

  .logo-unfv {
    width: 60px;
  }

  .logo-fccss {
    width: 180px;
  }

  form {
    width: 90%;
  }
}
