﻿body {
    overflow: hidden;
}

.login-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/image/login-body-bg.jpg');
    background-size: cover;
    background-position: center bottom;
}

.form-container {
    width: 50vw;
    height: 65vh;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px #a9a9a959;
    background: #fff;
}

.logo img {
    width: 50%;
}

.form-bg {
    color: #e6e6e6;
    text-align: center;
    /* padding: 45px 45px 85px 45px; */
    box-sizing: border-box;
    background-image: url('/image/login-bg-mobile.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

@media (min-width: 992px) {
    .form-bg {
        height: 100%;
        padding: 60px 85px 60px 45px;
        background-image: url('/image/login-bg.png');
        background-position: right center;
        border-radius: 10px 0 0 10px;
    }
}

.form-content {
    height: 100%;
    margin: 0;
    padding: 45px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.developed-details {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    transform: translateY(-50%);
    font-size: x-small;
}

.version {
    border-right: 1px solid #ffffff85;
    padding-right: 10px;
}

.developed-by {
    padding-left: 10px;
}

@media (max-width: 991px) {
    .form-container {
        width: 85vw;
        height: fit-content;
    }

    .form-content {
        height: fit-content;
    }

    .welcome {
        display: none;
    }

    .description {
        display: none;
    }

    .developed-details {
        display: none;
    }

    .logo {
        padding: 50px 0;
    }
}

.lbl {
    font-weight: 600;
}

.form-control {
    border: 0;
    border-bottom: 2px solid #0852a7;
    border-radius: 0;
}

    .form-control:focus {
        box-shadow: none;
        border-bottom: 2px solid #0852a7;
    }

.txt {
    padding: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo img {
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}
