html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Nanum Gothic', sans-serif;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    background-color: #102331;
}


* {
    box-sizing: border-box;
}

.bg01 {
    width:100%;
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.box {
    width: 525px;
    padding: 30px 50px;
    background-color: #172d3e;
    box-shadow: 1px 1px 20px 2px rgba(0, 0, 0, 0.3);
    
}

.input_label {
    color: #82baf6;
    font-weight: 400;
}


.login_input {
    width:100%;
    display: block;
    padding: 8px 12px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.15);
    color: #fff;
    transition: all 200ms ease;
    margin-bottom:25px;
}

.login_input:focus {
    border: 1px solid #3898ec;
    outline:none;
}

h1 > a {
    display: flex;
    justify-content: center;
    margin-top:80px;
}

.btn_wrap {
    display:flex;
    justify-content: flex-end;
}

.login_btn {
    margin-top:30px;
    width:150px;
    height:38px;
    background-color: transparent;
    color:#07ca8d;
    border: 2px solid #07ca8d;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;
    line-height: inherit;
    align-items: center;
    display: flex;
    justify-content:center;
    transition: all 400ms ease;
    margin-bottom: 20px;
}

.login_btn:hover {
    background-color: #07ca8d;
    color:#fff;
}

.join_btn {
    text-decoration: none;
    color: #07ca8d;
    font-weight: 600;
}

.last_box{
    color:#fff;
    text-align: center;
    margin-top:25px;
}

.logo_flex img {
	height: 36px;
}

.logo_flex {
	display: flex;
	align-items: center;
	text-decoration: none;
    margin-bottom: 15px;
}

.logo_flex b {
	color: #fff;
	font-size:19px;
	margin-left: 5px;
    font-weight: 900;
	font-family: 'Malgun Gothic';
}


@media (max-width:800px) {
    .box {
        width:100%;
    }
}