
   body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background-image: url('file:///C:/Users/tisser/Desktop/Kevin/marvel_software/attendencesystem/marvelapp/static/images/Adventure-bags.jpg');
      display: flex;
      background-repeat: no-repeat;
      background-size: cover;
      align-items: center;
      justify-content: center;
      height: 100vh;
      overflow: hidden;
    }
    .login-card {
      background: #fff;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
      width: 360px;
      margin-top:50px;
      margin-bottom: 50px;
    }
    .login-card h2 {
      text-align: center;
      margin-bottom: 24px;
      font-weight: 600;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 16px;
    }
    label {
      font-size: 14px;
      margin-bottom: 6px;
      font-weight: 500;
    }
    input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-family: inherit;
      font-size: 14px;
    }
    .btn {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      transition: 0.3s;
    }
    .btn-primary {
      background: #0c6ef0;
      color: #fff;
    }
    .btn-primary:hover {
      background: #0a58c5;
    }
    .login-footer {
      text-align: center;
      margin-top: 16px;
      font-size: 13px;
      color: #555;
    }