

body {
  background-image: linear-gradient(135deg, #FAB2FF 10%, #1904E5 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
}

/* Contenedor principal */
.box-form {
  width: 100%;
  height: 100vh;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px 8px rgba(0, 0, 0, 0.3);
}

/* Panel izquierdo */
.left {
	width: 60%;
	color: #FFFFFF;
	background-size: cover;
	background-repeat: no-repeat;
	 background-image: background-image: url('{{ ( $compania->com_fondo_login)? asset('fondos_login/'.$compania->com_fondo_login): asset('assets/img/login_default.jpg')}}');
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.left .overlay {
  padding: 30px;
  width: 100%;
  height: 100%;
  background: rgba(89, 97, 249, 0.7); /* Más oscuro para contraste */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.left .overlay h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.left .overlay p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.left .overlay span p {
  margin-top: 30px;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

/* Botones redes sociales */
.left .overlay span a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #3b5998;
  color: #FFFFFF;
  border-radius: 50%;
  margin: 10px 5px 0 5px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.left .overlay span a:hover {
  transform: scale(1.1);
  background: #324b81;
}

.left .overlay span a:last-child {
  background: #1dcaff;
}

.left .overlay span a:last-child:hover {
  background: #17a5d3;
}

/* Panel derecho */
.right {
  width: 40%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right .card {
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  border-radius: 70%;
}

/* Footer */
footer.main-footer {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background-color: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 14px;
  position: relative;
}

footer .pull-right {
  float: none !important;
  display: block;
  margin-top: 5px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .box-form {
    flex-direction: column;
    height: auto;
  }

  .left {
    display: none;
  }

  .right {
    width: 100%;
    padding: 30px;
  }
}
