.bg-img {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.login-panel {
    height: 80vh;
    z-index: 9;
    border: 10px double black;
    color: white;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.login-panel:hover {
    background-color: rgba(120, 49, 49, 0.597);
    transform: translateY(-10px);
}