    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Segoe UI', sans-serif;
    }

    .login-container {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px);
      border-radius: 20px;
      padding: 3rem;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
      max-width: 450px;
      width: 100%;

    }

    .log {
      margin-right: -280px;
    }

    .login-title {
      font-weight: bold;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .form-control:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .login-image {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .btn-login {
      font-weight: 600;
      padding: 0.75rem;
      border-radius: 10px;
    }

    
@media (max-width: 828px) {
      body {
      background: url('/public/images/login.png') no-repeat center center fixed;
      background-size: cover;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
     .log {
      margin-right: auto;
    }
    
}