body {
    background-color: #f8f9fa; /* Light gray background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Default font */
  }
  
  .card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .card-body {
    padding: 2rem;
  }
  
  .h1, h1 {
    font-weight: 700; /* Bold title */
    color: #333; /* Darker text color */
  }
  
  .form-label {
    font-weight: 600; /* Slightly bold labels */
    color: #555; /* Medium gray color for labels */
  }
  
  .form-control {
    border-radius: 25px; /* Rounded input fields */
    padding: 1rem; /* Increased padding for better spacing */
    font-size: 1rem; /* Standard font size */
  }
  
  .btn-warning {
    background-color: #f0ad4e; /* Bootstrap warning color */
    border: none; /* Remove default border */
  }
  
  .btn-warning:hover {
    background-color: #ec971f; /* Darker shade on hover */
    transition: background-color 0.3s ease; /* Smooth transition */
  }
  
  a.text-warning {
    color: #f0ad4e; /* Same color as the button */
    text-decoration: none; /* Remove underline */
  }
  
  a.text-warning:hover {
    color: #ec971f; /* Darker shade on hover */
    text-decoration: underline; /* Underline on hover */
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto; /* Responsive image */
    border-radius: 25px; /* Rounded corners for the image */
  }
  
  @media (max-width: 768px) {
    .form-control {
      padding: 0.75rem; /* Adjust padding for smaller screens */
      font-size: 0.9rem; /* Slightly smaller font size */
    }
  
    .btn-warning {
      padding: 0.75rem; /* Adjust padding for smaller screens */
    }
  
    .card-body {
      padding: 1rem; /* Adjust padding for smaller screens */
    }
  }
  