@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

body {
    background: #fff;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../images/new_blue_back1.jpg);
    background-size: cover;
}

    .container .box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 650px;
        height: 450px;
        border: 8px solid #d1d1d1;
        border-radius: 20px;
        /*background: url(../images/pink_beach.jpg);*/
        background-size: 850px 500px;
        background-position: -190px 0;
    }

        .container .box .login {
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            opacity: .7;
            border-top-left-radius: 12px;
            border-bottom-left-radius: 12px;
            border-top-right-radius: 12px;
            border-bottom-right-radius: 12px;
            padding: 50px 30px;
            box-sizing: border-box;
        }

            .container .box .login h1 {
                text-align: center;
            }

            .container .box .login .col {
                position: relative;
                margin: 30px 0;
            }

                .container .box .login .col input {
                    width: 100%;
                    height: 40px;
                    font-size: 17px;
                    font-weight: bold;
                    border: none;
                    outline: none;
                    padding: 10px 30px;
                    box-sizing: border-box;
                    border-bottom: 2px solid #262626;
                }


            .container .box .login img {
                width: 30%;
                height: 50px;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }

            .container .box .login .col .fa {
                position: absolute;
                left: 0;
                top: 0;
                font-size: 25px;
                line-height: 36.5px;
            }

            .container .box .login button {
                /*width: 50%;*/
                display: inline-block;
                /*position: relative;*/
                margin: 15px 0;
                border: 0px;
                cursor: pointer;
            }



            .container .box .login .sign-in {
                color: #fff;
                background: #f44336;
                width: 50%;
                height: 50px;
                line-height: 50px;
                text-align: center;
                text-decoration: none;
                border-radius: 20px;
                font-size: 20px;
                left: 50%;
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }

            .container .box .login .forget {
                text-align: left;
                margin: 0;
                height: 30px;
                color: #262626;
            }

            .container .box .login .errormessage {
                /*text-align: center;*/
                color: #f44336;
                height: 30px;
                font-size : 18px;
            }

.buttondiv {
    width:100%;
    height: 30px;
    position: absolute;
    bottom: 110px;
    left: 50%;
}


.errormessagediv {
    height: 30px;
    position: absolute;
    bottom: 60px;
    left: 40px;
}


.forgetdiv {
    height: 30px;
    position: absolute;
    bottom: 20px;
    left: 40px;
}

.dropdowndiv {
    height: 30px;
    position: absolute;
    bottom: 20px;
    right: 40px;
}

input.input-validation-error,
textarea.input-validation-error,
select.input-validation-error {
    background: #e65555;
    border: 2px solid #CD0A0A;
}

    input.input-validation-error ::placeholder {
        color:black;
    }

.text-danger {
    color: #a94442;
}


.container .box .login .dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    width: 100%;
}

.container .box .login .dropdown {
    position: relative;
    display: inline-block;
}

.container .box .login .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .container .box .login .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .container .box .login .dropdown-content a:hover {
            background-color: #ddd;
        }

.container .box .login .dropdown:hover .dropdown-content {
    display: block;
}

.container .box .login .dropdown:hover .dropbtn {
    background-color: #3e8e41;
}


@media screen and (max-width: 670px) {
    .container .box .login {
        width: 100%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .container .box {
        width: 95%;
    }
}
