﻿.login {
    background: #F2F4F6;
    min-height: 100vh;
}

.shape-1 {
    width: 150px;
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 3;
}

@media only screen and (max-width: 767px) {
    .shape-1 {
        width: 120px;
        position: absolute;
        top: 5%;
        left: 5%;
        z-index: 3;
    }
    }

    .w-65 {
        width: 60%;
    }

    .shape-2 {
        position: absolute;
        left: 0%;
        bottom: 0%;
        z-index: 0;
    }

    .shape-3 {
        width: 300px;
        position: absolute;
        bottom: 0%;
        left: 5%;
        z-index: 0;
    }

    .shape-4 {
        width: 170px;
        position: absolute;
        top: 0%;
        left: 53.8%;
        z-index: 0;
    }

    .shape-6 {
        width: 110px;
        position: absolute;
        top: 0%;
        left: 46.92%;
        z-index: -0;
    }

    .shape-7 {
        width: 130px;
        position: absolute;
        bottom: 0%;
        right: 7.5%;
        z-index: -0;
    }

    .shape-8 {
        width: 110px;
        position: absolute;
        bottom: 0%;
        right: 0%;
        z-index: -0;
    }

    .inputbox input {
        border-radius: 20px 20px;
        background: transparent;
        border: 1px solid #00000066;
        border-width: 1px 0px 1px 1px;
        height: 30px;
    }

    input:focus {
        box-shadow: none !important;
    }


    .inputbox span {
        border-radius: 0px 20px 20px 20px;
        background: transparent;
        border: 1px solid #00000066;
        border-width: 1px 1px 1px 0px;
        height: 30px;
        font-size: 20px;
    }

    .col2-border {
        border-radius: 0% 0% 0% 50%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        background-color: white;
    }

    .f-14 {
        font-size: 18px;
    }

    .animation-img {
        animation: updown 5s infinite linear;
    }

    .h-40 {
        height: 45px !important;
    }

    ::placeholder {
        font-size: 14px !important;
    }

    ::-ms-input-placeholder { /* Edge 12-18 */
        font-size: 14px !important;
    }

    @keyframes updown {
        0% {
            transform: translateY(-10px)
        }

        50% {
            transform: translateY(10px)
        }

        100% {
            transform: translateY(-10px)
        }
    }

    @media only screen and (max-width: 800px) {
        .col2-border {
            border-radius: 0% 0% 0% 0%;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            background-color: white;
        }
    }

