﻿body {
    overflow-x: hidden;
    background: url('/images/SyconHome.webp') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); /* Adjust opacity */
        z-index: 1;
    }

.card-header:first-child {
    border-radius: 0;
}

.login-container {
    z-index: 2;
}


@media (max-width: 768px) {
    .login-container {
        margin-top: 0;
    }
}