/* Centering everything */
body {
    font-family: Arial, sans-serif;
    background-image: url('backg.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    margin: 0;
}

/* Login Container */
.container {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    text-align: center;
}

/* Logo and Title - Align in the Same Line */
.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between the logo and text */
}

.logo-title img {
    width: 55px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
}

.logo-title h2 {
    font-size: 45px;
    color: #333;
    margin: 0;
    margin-bottom: 20px;
}

/* Input Fields */
.input-box {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Password Field Container */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 95%;
    margin: 10px auto;
}

.password-container input {
    flex: 1; /* Expands to take full width */
    padding-right: 35px; /* Ensure space for the eye icon */
}

/* Eye Icon Button */
.toggle-password {
    position: absolute;
    right: 10px;
    width: 25px;
    cursor: pointer;
}

/* Submit Button */
.button {
    width: 95%;
    padding: 10px;
    background: #28a745;
    border: none;
    color: white;
    font-size: 18px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.button:hover {
    background: #218838;
}

/* Links */
p {
    margin-top: 10px;
}

p a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
/*@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 20px;
    }

    .logo-title img {
        width: 50px; /* Smaller logo for small screens 
    }

  /*  .logo-title h2 {
        font-size: 30px;
    }
}
