body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background:linear-gradient(to bottom, rgba(43, 138, 234, 0.6), transparent);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}
.logo {
    width: 100px; 
    height: auto;
}
.title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}
.login-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}
input {
    width: 95%;
    padding: 9px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background: #0056b3;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.input-container i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
}

.input-container input {
    width: 80%; 
    padding: 10px 10px 10px 35px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-container{
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    body {
        background-image: url('8.jpg'); 
        background-size: cover;         
        background-position: center;    
        background-attachment: fixed;   
    }
        .header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 15px;
        }
    
        .title {
            position: static;
            transform: none;
            margin-top: 10px;
            font-size: 20px;
        }
    
        .logo {
            width: 80px;
        }
    
        .container {
            height: auto;
            padding: 20px;
        }
    
        .login-box {
            width: 90%;
            padding: 15px;
        }
    
        .input-container input {
            width: 80%;
            padding-left: 50px;
        }
    
        button {
            font-size: 14px;
            padding: 10px;
        }
    
}