body {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    background-image: url("image/background.jpg");
    background-position: center;
    background-size: cover;
}

.login-container {
    padding: 20px;
    background: rgba( 255, 255, 255, 0.15 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 8px );
    -webkit-backdrop-filter: blur( 8px );
    border-radius: 10px;
    width: 300px;
    color: white;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center images horizontally */
    margin-bottom: 20px; /* Optional spacing below images */
}


h1, h2 {
    text-align: center;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 85%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    padding: 15px;
}

.form-group input::placeholder {
    color: #fff;
}

.form-group input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group input[type="submit"] {
    background-color: #000;
    color: white;
    border: none;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.form-group input[type="submit"]:hover {
    background-color: #fff;
    color:#000;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 80%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon input {
    padding-right: 30px;
}

.input-icon img {
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
}

.error {
    color: red;
    text-align: center;
}

@media (max-width: 768px) {
    .login-container {
        width: 90%;
        margin: 0 auto;
    }
}
