body {
    background: rgb(255, 255, 255);
    background-image: url('img/18.jpg');
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    margin: 0;
}

.header {
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    margin-right: 15px;
}

.header-title {
    font-size: 24px;
    color: #6AB84C;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    text-align: left;
    white-space: nowrap;
}

.login-card {
    border-radius: 10px;
    background-color: #fff;
    width: 50%;
    max-width: 700px;
    margin: auto;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 100px; /* Push the login card below the fixed header */
    margin-bottom: 100px;
}

.login-card form {
    width: 100%;
    max-width: 500px;
}

.login-card input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-label {
    font-weight: bold;
    font-size: 15px;
}

.footer {
    background-color: #f8f9fa;
    opacity: 80%;
    color: #6c757d;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 7%;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-title {
        font-size: 22px;
    }

    .login-card {
        width: 80%;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px;
    }

    .header-title {
        font-size: 20px;
    }

    .logo img {
        max-height: 50px;
        margin-right: 10px;
    }

    .login-card {
        width: 90%;
        padding: 15px;
        margin-top: 90px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 18px;
    }

    .logo img {
        width: 50px;
        margin-right: 8px;
    }

    .login-card {
        width: 95%;
        padding: 10px;
        margin-top: 85px;
    }
    
    .login-card input {
        font-size: 14px;
    }
}
