

/* Reset básico */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; 
}

body {
  font-family: 'Montserrat', sans-serif;
}
.login-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f7;
  padding: 20px;
  box-sizing: border-box;
}

.login-container {
  display: flex;
  max-width: 850px;
  width: 100%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

/* Panel izquierdo */
.portal-description {
  flex: 1.2;
  background: linear-gradient(135deg, #194447, #194447);
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.portal-description h3 {
  font-weight: 200;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.portal-description p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.login-form-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 40px;
}

.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.login-content h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

.submit-btn {
  width: 100%;
  max-width: 320px;
  font-weight: 450;
  background-color: #f4b83f !important;
  color: #fff !important;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.submit-btn i {
  font-size: 1.1rem;
}

.submit-btn:hover:not(:disabled) {
  background-color: #f4b83f !important;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background-color: #ccc !important;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 767px) {
  .login-container {
    flex-direction: column;
    max-width: 400px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .portal-description {
    display: none;
  }

  .login-form-wrapper {
    padding: 40px 30px;
  }
}
