/* styles.css */

/* Global improvements */
  body {
    background-color: #3f51b5;
    color: #343a40;
  }

  .card-header:first-child {
    border-radius: 20px;
  }
  .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
  }
  .card-header {
    background: linear-gradient(90deg, #00BCD4, #2196F3);
    color: white;
    font-weight: 600;
  }
  .form-label {
    font-weight: 500;
  }
  .form-check-input {
    width: 1.2em;
    height: 1.2em;
  }
  .btn-submit {
    color: #fff;
    background-color: #2196F3;
    border: none;
  }
  .btn-submit:hover {
    color: #fff;
    background-color: #00BCD4;
  }
  /* Image preview styling */
  .preview-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
