﻿
body {
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom right, #f8fafc, #eef6ff);
    font-family: "iranSans", sans-serif;
}

.login-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.2);
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .25);
}

.login-btn {
    /* background: linear-gradient(to right, #0d6efd, #6610f2); */
    background: linear-gradient(to right, #2d7fc0, #68a3d1);
    border: none;
    border-radius: 10px;
}

    .login-btn:hover {
        background: linear-gradient(to right, #68a3d1, #2d7fc0);
        animation: ease-in-out;
    }

.login-wrapper {
    border-radius: 40px 0 0 40px !important;
    height: 100vh !important;
}

.logoLogin {
    width: 3cm;
}

/* حالت موبایل */
@media (max-width: 991px) {

  /*  .bg-image-wrapper {
        display: none !important;
    }*/

    .bg-image-wrapper {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        z-index: 0; 
    }

    .bg-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    body {
        background: url('/assets/images/factory.jpg') no-repeat center center;
        background-size: cover;
        /* opacity: 0.5 !important; */
        background-color: #212529, 1 !important;
    }

    .wrapper {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        height: 100vh;
    }

    .login-wrapper {
        position: relative !important;
        z-index: 1;
        /*position: static !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;*/
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 95% !important;
        border-radius: 40px !important;
        height: 80% !important;
    }

        .login-wrapper .card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px !important;
            /*max-width: 400px;*/
            width: 100%;
        }

    .logoLogin {
        width: 2cm !important;
    }
}

