:root
		{
			--verde-pediloo: #2f9e44;
			--verde-oscuro: #22863a;
			--blanco: #ffffff;
		}
	 body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f4f9f4;
      height: 100vh;
      margin: 0;
    }
    .login-container {
      display: flex;
      height: 100vh;
      flex-wrap: wrap;
    }
    .login-image {
      flex: 1;
      background: url("../../assets/img/side_left.png") no-repeat center center;
      background-size: cover;
    }
    .login-form {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      padding: 2rem;
    }
    .form-box {
      width: 100%;
      max-width: 400px;
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      padding: 2rem;
    }
    .logo {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .logo img {
      max-height: 110px;
    }
    .btn-custom {
      background: linear-gradient(135deg, #4CAF50, #2E7D32);
      border: none;
      color: #fff;
      font-weight: 600;
      transition: 0.3s ease;
    }
    .btn-custom:hover {
      background: linear-gradient(135deg, #43a047, #1b5e20);
    }
    .form-text a {
      text-decoration: none;
      color: #2E7D32;
      font-weight: 500;
    }
    .form-text a:hover {
      text-decoration: underline;
    }
    /* Ajuste para móviles */
    @media (max-width: 768px) {
      .login-container {
        flex-direction: column;
      }
      .login-image {
        display: none;
      }
      body {
        background: #ffffff;
      }
    }