﻿:root {
    --input-padding-x: 1.5rem;
    --input-padding-y: .35rem;
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Moon+Dance&family=Open+Sans&family=Oswald&family=Roboto&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #515A5A;
}

input:focus{
    outline:none;
}


/* Fallback for Edge
-------------------------------------------------- */

@supports (-ms-ime-align: auto) {
    .form-label-group > label {
        display: none;
    }

    .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}
/* Fallback for IE
-------------------------------------------------- */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
        display: none;
    }

    .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}

/*overcss*/


* {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
}


h1 {
    font-weight: bold;
    margin: 0;
}

h2 {
    text-align: center;
}

.container h3 {
    text-align: center;
    padding-top: 5px;
    /* changes*/
    margin-top: -10px;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    /*changes*/
    margin: 10px 0 10px;
}

span {
    font-size: 14px;
}

.text-center a {
    color: #333;
/*    font-size: 14px;*/
    text-decoration: none;
}


button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}




#captcha {
    margin: 15px 0px;
}

    #captcha .preview {
        color: #555;
        width: 100%;
        text-align: center;
        height: 40px;
        line-height: 40px;
        letter-spacing: 8px;
        border: 1px dashed #888;
        border-radius: 0.5em;
        margin-bottom: 1.6em;
    }

.form_input_captcha {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1em;
    border: 0.1em solid #dadce0;
    border-radius: 0.5em;
    outline: none;
    padding: 1em;
    z-index: 1;
    background: none;
}


.form_label_captcha {
    position: absolute;
    left: 1em;
    top: 5.2em;
    padding: 0 .25em;
    background-color: #fff;
    color: #80868b;
    font-size: 1em;
    transition: .4s;
}

.form_input_captcha:focus + .form_label_captcha {
    top: 4.7em;
    left: .8em;
    color: rgb(28,164,248);
    font-size: .80em;
    font-weight: 600;
    z-index: 5;
}

.form_input_captcha:not(:placeholder-shown).form_input_captcha:not(:focus) + .form_label_captcha {
    top: 4.6em;
    left: .8em;
    font-size: .80em;
    font-weight: 600;
    z-index: 5;
}

.form_input_captcha:focus {
    border: .1em solid rgb(28,164,248);
}

#captcha .preview span {
    display: inline-block;
    user-select: none;
}

#captcha .captcha_form {
    display: flex;
}

    #captcha .captcha_form input {
        width: 100%;
        font-size: 1em;
        border-radius: 0.5em;
        outline: none;
        padding: 1em;
        z-index: 1;
        background: none;
    }

    #captcha .captcha_form .captcha_refersh {
        width: 40px;
        border: none;
        outline: none;
        background: #888;
        color: #54BAB9;
        cursor: pointer;
        border-radius: 0.5em;
        margin-left: 5px;
    }

.captcha_refersh {
    transition: .4s;
}

    .captcha_refersh:hover {
        transition: .4s;
        transform: scale(0.90);
    }



.form-grp {
    background-color: #FFFFFF;
    padding: 0 50px;
    text-align: center;
    margin-top: 25px;
    overflow: auto;
}

input {
    background-color: #eee;
    border: none;
    /*padding: 12px 15px;
    margin: 8px 0;*/
    width: 100%;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow-y: auto;
    width: 950px;
    max-width: 100%;
    min-height: 700px;
    /* changes*/
    margin-top: 3%;
    margin-bottom: 8%;
    /* margin-top: 2%;
    margin-bottom: 2%;*/
    scroll-behavior: smooth;
}
.captcha canvas {
    margin-bottom: 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    width: 100%;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 0;
}

.form-container .title {
    align-content: center;
    color: #515A5A;
    font-weight:500;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}





.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #54BAB9;
    background: -webkit-linear-gradient(to right, #54BAB9, #A3E4D7 );
    background: linear-gradient(to right, #54BAB9, #A3E4D7F);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

    .overlay-panel svg, h1, p {
        color: #515A5A;
    }


.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

/*.social-container {
    margin: 20px 0;
}

    .social-container a {
        border: 1px solid #DDDDDD;
        border-radius: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
    }*/


.form-label-group {
    position: relative;
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 6px;
}

    .form-label-group i {
        padding-right: 10px;
    }

    

    .form-label-group > input,
    .form-label-group > label {
        /* padding: var(--input-padding-y) var(--input-padding-x);*/
        font-size: 16px;
        font-weight: 400;
       
    }

    .form-label-group input {
        height: 2.4rem;
        /*changes*/
        border: solid 1px;
        border-color: #54BAB9;
        line-height: 1.7rem;
        padding-left:3.2em;

    }
    .form-label-group.hello label {
        /*margin-right:20px;*/
      
    }

    .form-label-group > label {
        position: absolute;
        align-content: start;
        top: 7px;
        left:3%;
        display: block;
        width: 100%;
        margin-bottom: 0;
        /* Override default `<label>` margin */
        /*line-height: 1.7rem;*/
        color: #515A5A;
        transition: all .1s ease-in-out;
        /* border-left: solid 4px;*/
    }

   /* .form-label-group input::-webkit-input-placeholder {
        padding-left: 1.7rem;
        
    }

    .form-label-group input:-ms-input-placeholder {
        padding-left: 1.7rem;
    }

    .form-label-group input:-ms-input-placeholder {
        padding-left: 1.7rem;
    }

    .form-label-group input::-moz-placeholder {
        padding-left: 1.7rem;
    }

    .form-label-group input::placeholder {
        padding-left: 1.7rem;
    }
*/
    .form-label-group > input,
    .form-label-group > label {
        font-size: 16px;
        font-weight: 400;
       
        /*padding: var(--input-padding-y) var(--input-padding-x);*/
    }

    .form-label-group input:not(:placeholder-shown) {
        padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
        padding-bottom: calc(var(--input-padding-y) / 3);
    }

        .form-label-group input:not(:placeholder-shown) ~ label {
            padding-top: calc(var(--input-padding-y) / 3);
            padding-bottom: calc(var(--input-padding-y) / 3);
            font-size: 16px;
            left:1%;
            padding:0px 0px 15px 15px;
            color: #515A5A;

            font-family: 'Fira Sans', sans-serif;
            width: 10% !important;
        }



    .hello input::placeholder {
        margin-left: 30px;
        /* border-left-color: #92a8d1;*/
    }
/*.social-container {
    display: flex;
    align-content: space-around;
}*/

.btn-google {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: large;
    border: 2px solid #4285f4;
    border-radius: 100px;
}

.btn-facebook {
    color: #3B5998;
    background-color: none;
    border-radius: 100px;
    border: 2px solid #3B5998;
    font-size: large;
}

.register {
    
    color: #515A5A;
    background: #54BAB9;
    font-weight: 600;
    font-size: 16px;
    border: none;
    height: 30px;
    width: 40%;
    padding: 3px;
    margin-left: 28%;
    margin-top: 30px;
    border-radius: 5px;
}

    .register:hover {
        color: #54BAB9;
        background: #515A5A;
    }



.captcha {
    margin: 1.5rem 0 0 0;
}

    .captcha .preview {
        color: #555;
        width: 100%;
        text-align: center;
        height: 25px;
        line-height: 25px;
        letter-spacing: 8px;
        border: 1px dashed #888;
        font-family: "monospace";
    }

        .captcha .preview span {
            display: inline-block;
            user-select: none;
        }

    .captcha .captcha-form {
        display: flex;
    }

        .captcha .captcha-form input {
            width: 100%;
            height: 2rem;
            padding: 8px;
            font-size: 16px;
            border: 1px solid #888;
        }

        .captcha .captcha-form .captcha-refresh {
            width: 30px;
            height: 2rem;
            border: none;
            outline: none;
            background: #54BAB9;
            color: #515A5A;
            cursor: pointer;
        }



/* responsive  */

@media (max-width: 991px) {

    .container {
       /* max-width: 350px;*/
        margin-top: 2%;
        background: #1ABC9C;
        background: -webkit-linear-gradient(to right, #1ABC9C, #A3E4D7 );
        background: linear-gradient(to right, #1ABC9C, #A3E4D7 );
    }

    .form-label-group input {
        height: auto;
        width: 100%;
    }

    .form-grp {
        padding: 0 20px;
    }

    .container .overlay-container {
        display: none;
    }

    .container .form-container {
        width: 100%;
    }
}

/*@media (max-width: 710px) {

    .container {
        max-width: 350px;
        margin-top: 15%;
        background: #1ABC9C;
        background: -webkit-linear-gradient(to right, #1ABC9C, #A3E4D7 );
        background: linear-gradient(to right, #1ABC9C, #A3E4D7 );
    }

    .form-label-group input {
        height: auto;
        width: 100%;
    }

    .form-grp {
        padding: 0 20px;
    }

    .container .overlay-container {
        display: none;
    }

    .container .form-container {
        width: 100%;
    }
}

@media (max-width: 610px) {

    .container {
        max-width: 350px;
        margin-top: 20%;
        background: #1ABC9C;
        background: -webkit-linear-gradient(to right, #1ABC9C, #A3E4D7 );
        background: linear-gradient(to right, #1ABC9C, #A3E4D7 );
    }

    .form-label-group input {
        height: auto;
        width: 100%;
    }

    .form-grp {
        padding: 0 20px;
    }

    .container .overlay-container {
        display: none;
    }

    .container .form-container {
        width: 100%;
    }
}*/

@media (max-width: 720px) {
    .container {
        margin: auto;
        /*max-width: 70%;*/
        margin-top: 10%;
       /* margin-left: 15%;*/
        background: #1ABC9C;
        background: -webkit-linear-gradient(to right, #1ABC9C, #A3E4D7 );
        background: linear-gradient(to right, #1ABC9C, #A3E4D7 );
    }

    .form-label-group input {
        height: auto;
        width: 100%;
    }

    .form-grp {
        padding: 0 20px;
    }

    .container .overlay-container {
        display: none;
    }

    .container .form-container {
        width: 100%;
        background-color: white;
        border-width: 3px;
        border: solid #54BAB9;
    }

    @media (max-width: 991px) {
        .container {
            width: 90%;
        }

            .container .overlay-container {
                display: none;
            }
    }

    @media (max-width: 540px) {
        .container {
            width: 90%;
        }

        .form-grp {
            padding: 0 10px;
        }

        .captcha .preview {
            height: 20px;
            line-height: 20px;
        }

        .captcha .captcha-form input,
        .captcha .captcha-form .captcha-refresh {
            height: 20px;
        }

        .container .overlay-container {
            display: none;
        }
    }





/*    .captcha {
        margin: 2rem 0px 0 0;
    }

        .captcha .preview {
            color: #555;
            width: 100%;
            text-align: center;
            height: 30px;
            line-height: 30px;
            letter-spacing: 8px;
            border: 1px dashed #888;
            font-family: "monospace";
        }

            .captcha .preview span {
                display: inline-block;
                user-select: none;
            }

        .captcha .captcha-form {
            display: flex;
        }

            .captcha .captcha-form input {
                width: 100%;
                padding: 8px;
                border: 1px solid #888;
                height: 30px;
            }

            .captcha .captcha-form .captcha-refresh {
                width: 40px;
                border: none;
                outline: none;
                background: #888;
                color: #54BAB9;
                cursor: pointer;
                height: 30px;
            }
*/

