body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background: url('/Images/1.jpg') no-repeat center center fixed;
      background-size: cover;
      height: 100vh;
      overflow: hidden;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .login-wrapper {
      position: relative;
      z-index: 1;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 15px;
    }

    .card {
      border-radius: 20px;
      padding: 40px 30px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      color: #fff;
      width: 100%;
      max-width: 500px;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.01);
    }

    h2 {
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
      color: #fff;
    }

    .form-label {
      font-weight: 500;
      color: #fff;
    }

    .form-control {
      border-radius: 10px;
      background-color: rgba(255, 255, 255, 0.2);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .form-control::placeholder {
      color: #ddd;
    }

    .form-control:focus {
      border-color: #fff;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .btn-success {
      background-color: #28a745;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      transition: background-color 0.3s, transform 0.3s;
    }

    .btn-success:hover {
      background-color: #1e7e34;
      transform: scale(1.02);
    }

    .text-center a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    .text-center a:hover {
      color: #d2d2ff;
      text-decoration: underline;
    }