/* BASIC */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
}

body {
    height: 100%;
}

a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    width: 30%;
    margin: 30px auto 15px;
    color: #e1dfdf;
}



/* STRUCTURE */
.loginbox {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    height: 90vh;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #d9e6f9;
}

.login-title {
    width: 100%;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 15px 64px 15px;
    margin-bottom: 30px;
}

    .login-title::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(54, 84, 99, 0.7);
    }

.login-title-1 {
    font-size: 30px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
}

.wrap-login100 {
    width: 550px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.3);
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 95%;
    padding: 20px;
}

.form-contents {
    width: 90%;
    margin: 0 auto
}

.formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 20px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    font-size: 0.7rem;
}



.group {
    width: 85%;
    margin: 15px auto;
}

    .group .gcheck {
        text-align: left;
        margin: 6px 1px
    }

    .group label {
        font-size: 0.8rem;
    }

/* FORM TYPOGRAPHY*/

input {
    outline: none;
}


.btn_login {
    background-color: #4c71eb;
    border: none;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    -webkit-box-shadow: 0 10px 20px 0 rgba(95, 186, 233, 0.4);
    box-shadow: 0 10px 20px 0 rgba(95, 186, 233, 0.4);
    -webkit-border-radius: 25px;
    border-radius: 25px;
    width: 55%;
    margin: 20px auto 30px;
    cursor: pointer;
    font-family: 'NotoSansCJKkr-Regular';
}

    .btn_login:hover {
        background-color: #64B1F0;
    }


.txt_login {
    background-color: #fff;
    color: #0d0d0d;
    padding: 10px;
    text-align: left;
    text-decoration: none;
    display: block;
    margin: 5px auto;
    width: 85%;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #fff;
    text-indent: 3px;
    transition: all 0.5s;
    font-family: 'NotoSansCJKkr-Regular';
    font-size: 12px;
    vertical-align: middle;
    outline: 0;
    border-width: 0 0 1px;
    border-color: #ddd;
}

input[type=text]:focus {
    background-color: #fff;
    border-bottom: 1px solid #4c71eb;
}

input[type=text]:placeholder {
    color: #e1dfdf;
}

input:focus {
    outline: none
}

input::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 1px;
    background-color: #4c71eb;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

    .underlineHover:hover:after {
        width: 100%;
    }
