body {
    font-family: Arial, sans-serif;
    background: url('../images/Naga.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px); 
    z-index: 1;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}
.title-container {
    position: absolute;
    top: 50px;
    left: 120px;
    z-index: 2;
}

.title-container img {
    width: 300px;
    height: auto;
}
.logo-container img {
    width: 100px;
    height: auto;
}

.login-heading,
.login-container {
    position: relative;
    z-index: 2;
}

.login-heading {
    font-size: 24px;
    margin-bottom: 30px;
    color: #000000;
}

.login-container {
    background-color: #1C4966;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: white;
}

.password-container {
    position: relative;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 95%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.toggle-password img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #FEC20C;
    color: #1C4966;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #d8a707;
}

.error-message {
    color: red;
    font-size: 14px;
    display: none;
    text-align: center;
    margin-top: 10px;
}