﻿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;
    }


@media (max-width: 768px) {
    body {
        background: #fff !important;
        height: auto !important; /* Let content size the page */
        display: block !important; /* Normal document flow */
    }

    .card {
        box-shadow: none !important;
    }
        body::before {
            content: none !important; /* Remove dark overlay */
        }
}



.registration-step {
    border: 1px solid rgb(233, 233, 233);
    border-radius: 50%;
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: white;

}

.card-registration{
    z-index:2;
    min-width: 450px;
}

    .registration-step > * {
        margin-top: 13px;
    }

.registration-step-done {
    background: linear-gradient(165deg,#3d8bff 0%,#0a56c7 50%,#3d8bff 100%);
    color: #FFF !important;
}


.step-number {
    font-size: 2rem !important;
}


