﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.login-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

    .login-form-container:hover {
        box-shadow: 0px 4px 30px rgba(255, 255, 255, 0.5);
    }

    .login-form-container img {
        max-width: 100%;
        width: auto;
        height: 40px;
        margin-bottom: 1rem;
    }

@media (max-width: 768px) {
    .background-img {
        display: none;
    }
}
