body {
    font-family: Arial, sans-serif;
    background: url("bg.png") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.login-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
    width: 320px;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.login-container label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
    color: #444;
}

/* General input styling */
.login-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Fix password input & icon alignment */
.password-container {
    position: relative;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* space for eye icon */
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

.password-container img {
    position: absolute;
    right: 10px;
    top: 55%; /* slightly lower than center */
    transform: translateY(-50%);
    width: 25px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.password-container img:hover {
    opacity: 1;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background: #e22626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-container button:hover {
    background: #7e0505;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; 
}

.logo {
    width: 500px;  
    height: auto;
}


