* {
    box-sizing: border-box;
}

body {
    background-color: #ddd;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 0px;
}

.loginbg {
    background-image: url(../images/loginbg01.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

#form-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



.form-inner-container {
    background-color: white;
    width: 1000px;
    height: 600px;
    min-width: 500px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    /*    border-radius: 15px;*/
}

.logo {
    padding: 20px 10px;
    width: 200px;
}

#sign-up-container_t {
    padding: 10px 20px;
    width: 50%;
    /*    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
    /*background-image: url(../images/Samse_Logo.png);*/
    background-repeat: no-repeat;
    background-size: 200%;
    background-position: left bottom;
    background-color: #f1f2f4;
}

#sign-up-container_b {
    padding: 40px 50px;
    width: 50%;
    background: #fff;
}

    #sign-up-container_b h3 {
        color: #000;
    }

        #sign-up-container_b h3 span {
            color: #389fea;
        }

.txt_box {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #E5E9F5;
    background-color: #F6F7FA;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9rem;
}

#form-controls {
    padding: 20px 0px;
    text-align: center;
}


h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: -1px;
}

label {
    color: #333;
}

::placeholder {
    color: #c7c7c7;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
}

input {
    outline: none;
}

#form-controls button {
    border: none;
    font-size: 1.0rem;
    width: 100%;
}

    #form-controls button:hover {
        cursor: pointer;
    }

button[type="submit"] {
    padding: 14px 75px;
    background-color: #389fea;
    border-radius: 10px;
    color: white;
}

    button[type="submit"]:hover {
        background-color: #0d6efd;
    }

button[type="button"] {
    padding: 16px 0 16px 35px;
    background-color: transparent;
    color: #0d6efd;
}

#terms {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 1px solid #adb5bd;
    border-radius: 4px;
    position: relative;
}

    #terms:checked:after {
        content: '\2713';
        color: #0d6efd;
        font-size: 1.0rem;
        position: absolute;
        top: -3px;
        left: 2px;
        font-weight: bold;
    }

label[for="terms"] {
    display: inline-block;
    width: 80%;
    margin-left: 4px;
    font-size: 0.9rem;
    color: #333;
    letter-spacing: -2px
}

.termsLink {
    color: #0d6efd;
    text-decoration: none;
}

.hide {
    display: none !important;
}

#animation-container {
    display: inline-block;
}

.agree_gr {
    display: flex;
    align-items: center;
}

.d_flex {
    display: flex;
}

.flex_center {
    justify-content: center;
}

/* responsive display */



@media(max-width:1000px) {

    .form-inner-container {
        background-color: white;
        width: 80%;
        height: 500px;
        min-width: 500px;
        border-radius: 15px;
        /*box-shadow: 0 0 20px gainsboro;*/
    }

    #sign-up-container_t {
        padding: 10px 20px;
        width: 50%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        /*background-image: url(../images/Samse_Logo.png);*/
        background-repeat: no-repeat;
        background-size: 300%;
        background-position: left bottom;
        background-color: #f1f2f4;
    }

    #sign-up-container_b {
        padding: 30px 20px;
        width: 50%;
    }


    h3 {
        color: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        text-align: center;
        letter-spacing: -1px;
        margin: 15px auto;
    }

    .txt_box {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #E5E9F5;
        background-color: #F6F7FA;
        padding: 10px;
        margin-top: 10px;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
        font-size: 0.9rem;
    }

    label {
        color: #333;
        font-size: 0.9rem;
    }

    ::placeholder {
        color: #c7c7c7;
        font-size: 0.85rem;
        letter-spacing: 1.2px;
    }
}

@media(max-width:780px) {
    .form-inner-container {
        width: 600px;
    }
}
