/* Full dark background and center card */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212; /* Dark background */
    color: #f1f1f1; /* Light text for contrast */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Card container */
  .card {
    width: 100%;
    max-width: 400px;
    background-color: #1e1e1e; /* Dark card */
    color: #f1f1f1;
    border: 1px solid #333;
  }
  
  /* Card header branding */
  .card-header {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
  }
  
  /* Input fields */
  .form-control {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #444;
  }
  
  .form-control:focus {
    background-color: #2c2c2c;
    color: #fff;
    border-color: #007bff;
    box-shadow: none;
  }
  
  /* Input group icon */
  .input-group-text {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
  }
  
  /* Placeholder text */
  ::placeholder {
    color: #aaa;
  }
  
  /* Button */
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  /* Alerts */
  .alert {
    padding: 10px;
    font-size: 0.9rem;
    margin-top: 10px;
  }
  
  /* Eye icon */
  .toggle-password i {
    color: #fff !important;
    font-size: 18px;
    cursor: pointer;
  }
  

    /* Remove card border radius and apply smaller shadow */
    .card {
        border-radius: 0 !important; /* Remove rounded corners */
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1) !important; /* Softer shadow */
      }
    
      /* Also remove radius from card-header and card-body */
      .card-header,
      .card-body {
        border-radius: 0 !important;
      }
    
        /*  Modal Container Styles */
        .modal-content {
        border-radius: 0 !important; /* Remove rounded corners */
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1) !important; /* Smaller drop shadow */
      }
    
      /* Optional: Remove radius from modal header/footer specifically */
      .modal-header,
      .modal-footer {
        border-radius: 0 !important;
      }
    
      /* Optional: Consistent padding for modal body */
      .modal-body {
        padding: 1.25rem;
      }
    
        /*  Applies to all Bootstrap button types and sizes */
        .btn,
      .btn-sm,
      .btn-lg,
      .btn-primary,
      .btn-outline-primary,
      .btn-secondary,
      .btn-outline-secondary,
      .btn-success,
      .btn-outline-success,
      .btn-danger,
      .btn-outline-danger,
      .btn-warning,
      .btn-outline-warning,
      .btn-info,
      .btn-outline-info,
      .btn-dark,
      .btn-outline-dark,
      .btn-light,
      .btn-outline-light {
        border-radius: 0 !important; /* No rounded corners */
      }
    
      /*  Applies to all common form input types */
      input.form-control,
      textarea.form-control,
      select.form-select,
      .form-control,
      .form-select {
        border-radius: 0 !important;  /* Remove rounding */
      }