﻿body {
    font-family: NanumGothic;
    font-size: 12px;
    color: #555555;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: center;
}
.wrap {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    text-align: left;
}
.header{
    width: 100%;
    height:80px;
    line-height: 130px;
}
#container {
    width: 100%;
    display: inline-block;
}
#container:after {
    display: block;
    clear: both;
    content:'';
}
.login_container {
    width: 420px;
    height: 520px;
    margin: 0 auto;
}
#wrap_login {
    height: 300px;
    background-size: cover;
    box-shadow: 0px 10px 60px -5px #000;
    background-image: url(../img/footer_bg.jpg);
    background-repeat: repeat;
}
#active {
    color: #a6093d;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 400;
    margin-left: 10px;
    font-family: 'nanumgothic';
    border-bottom: 2px solid #ffffff;
}
.login_span {
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.9;
    display: inline-block;
    position: relative;
    top: -65px;
    transition: all 0.5s ease-in-out;
    margin-left: 10px;
    color: #FFFFFF;
}
.login_text {
    margin: 0 auto;
    border: none;
    width: 60%;
    padding: 10px 20px;
    display: block;
    height: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0);
    overflow: hidden;
    margin-top: 15px;
    transition: all 0.5s ease-in-out;
}
.login_text:focus {
    outline: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0);
}
.login_text:focus + .login_span {
    opacity: 0.6;

}
.going_login_btn {
    background-color: #a6093d;
    color: #f2f2f2;
    width: 40%;
    margin: 0 auto;
    display: block;
    height: 30px;
    border-radius: 20px;
    transition: all 0,5s ease-in-out;
    border: none;
    text-transform: uppercase;
}
.going_login_btn:hover {
    background: #ffffff;
    box-shadow: 0px 2px 8px -2px #ffffff;
    cursor: pointer;
    color: #434343;
}
.going_login_btn:focus {
    outline: none;
}