@charset "utf-8";

/* 기초 엘리먼트 스타일 설정 */
html{
	height : 100%;
}
body{
	padding : 1.5rem;
	margin : 0;
	box-sizing : border-box;
}

a{ color : inherit; text-decoration : none; }

input[type="text"],
input[type="password"],
input[type="date"],
input[type="number"]{
    min-height : 1.5rem;
    padding : 0 .25rem;
    margin : 0;
    border : solid 1px #AAA;
    box-sizing : border-box;
    font-size : .815rem;
}
input[type="text"][disabled],
input[type="password"][disabled],
input[type="date"][disabled],
input[type="number"][disabled]{
    background-color : #EEE;
    color : #666;
}

button{
    padding : 0;
    margin : 0;
    background-color : #EEE;
    border : solid 1px #777;
    box-sizing : border-box;
    font-size : .75rem;
}


#LOGOUT{
	display : flex;
	justify-content : center;
	align-items : center;

	position : absolute;
	top : 1.5rem;
	right : 1.5rem;
	height : 2rem;
	padding : 0 .6rem;
	border : solid 1px #AAA;
	border-radius : .25rem;
	box-sizing : border-box;
	color : #555;
	font-size : .725rem;
}

h1{
	padding : 0;
	margin : 0;
	color : #13509B;
	font-size : 1.125rem;
}