/* src/Login.css */

/* Background image for Login page */
.login-page-bg {
    background-image: url("https://images.unsplash.com/photo-1516478177764-9fe5fe2e4820?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); /* Music-oriented background (piano keys and music notes) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
  }
  
  /* Override for Login page (remove padding and set background image) */
  body.login-page {
    padding-left: 0 !important;
    padding-top: 0 !important;
    background-image: url("/assets/images/bg.jpg"); /* Corrected path to local image */
    background-size: cover; /* Ensure the image covers the entire viewport */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    overflow-x: visible; /* Optional: Reset overflow if needed */
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .bg-light {
    background-color: #f8f9fa !important; /* Ensure bg-light is defined if needed */
  }
  
  .bg-white {
    background-color: #ffffff !important;
  }
  
  .text-dark {
    color: #212529 !important;
  }
  
  .text-muted {
    color: #6c757d !important;
  }
  
  .form-control,
  .form-control-lg {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    box-shadow: none;
    font-size: small;
    /* font-family: Arial, sans-serif; */
  }
  
  .form-control:focus,
  .form-control-lg:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .btn-primary {
    background-color: #ffffff; /* White button background */
    color: #6f42c1; /* Purple text to match the image */
    border: 2px solid #6f42c1; /* Purple border */
    font-weight: bold;
    font-family: Arial, sans-serif;
  }
  
  .btn-primary:hover {
    background-color: #6f42c1; /* Purple on hover */
    color: #ffffff;
    border-color: #6f42c1;
  }
  
  .alert-danger {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-family: Arial, sans-serif;
  }
  
  .rounded {
    border-radius: 0.5rem !important;
  }
  
  .form-check-label {
    font-family: Arial, sans-serif;
    font-weight: 500;
  }
  
  .text-primary {
    font-family: Arial, sans-serif;
    font-weight: 500;
  }