/* Estilo global del body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  /* Centrar el formulario */
  .login-form {
    background-color: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    max-width: 450px;
    width: 100%;
  }
  
  /* Estilo común para inputs y placeholders */
  .form-control.dark-input,
  .form-check-input {
    background-color: #333333;
    border: 1px solid #555555;
    color: #ffffff;
  }
  
  .form-control.dark-input {
    height: 40px;
    font-size: 14px;
    padding-left: 10px;
  }
  
  /* Placeholder color */
  input::placeholder {
    color: #ffffff !important;
    opacity: 1;
  }
  
  /* Estilo del botón de login */
  .btn-custom {
    background-color: #ea8c00;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    width: 90%;
  }
  
  .btn-custom:hover {
    background-color: #ea5e00;
  }
  
  /* Botones de redes sociales y enlaces */
  .btn-link,
  .text-light a {
    color: #ffffff;
  }
  
  .btn-link:hover,
  .text-light a:hover {
    color: #6200ea;
  }
  
  .fab,
  .text-center p a {
    font-size: 18px;
  }
  
  .text-center p a {
    text-decoration: none;
    font-weight: bold;
  }
  
  .text-center p a:hover {
    color: #3700b3;
  }
  
  /* Personalización del checkbox */
  .form-check-input:checked {
    background-color: #ea8c00;
    border-color: #ea5e00;
  }
  
  /* Mejorar la apariencia de los enlaces del formulario */
  .text-light {
    color: #ffffff !important;
  }
  