* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000000;
    background-image: url('bg.png'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative; /* Ensure the pseudo-element is positioned correctly */
    overflow: hidden; /* Prevent overflow issues */
}

/* Blur and darkening effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5); /* Adjust blur and darkness */
    z-index: -1; /* Keep it behind the content */
}


.container {
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.greet h1 {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
}

.login-box {
    background-color: rgba(0, 0, 0, 0.719);
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    margin: 50px auto;
}

h2, p {
    color: white;
    margin-bottom: 10px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    padding-left: 40px;
    border-radius: 5px;
    border: none;
    background-color: #f0f0f0;
}

.input-group .icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: gray;
}

.client-login {
    color: #76c7c0;
    text-decoration: none;
    font-size: 0.9em;
    display: block;
    margin-bottom: 15px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

  .forgot-password {
    color: rgb(0, 132, 255); /* Change this to your desired color */
  }
  