@charset "UTF-8";
@import url(common.css);

/* DEFAULT */
html {
    font-size: 14px;
    letter-spacing: -0.5px;
    word-spacing: -0.4px;
	width:100%;
	height:100%;
}
body {
	width:100%;
    height: 100%;
}
body > div {
	width:100%;
	height:75%;
	display: flex;
}
.wrap {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: var(--grey);
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--grey);
}

/*로그인*/
.login-bg {
    background: url(../image/img21.svg) no-repeat 50% 85%;
    background-size: 26%;
    background-color: var(--default-blue);
    color: var(--white);
}
.login-bg header{
    height: 200px;
    position: relative;
}
.logo{
    font-size: 2.5rem;
    position: relative;
	text-align: center;
	margin-bottom: 50px;
}
.login-bg footer{
    background-color: var(--point-blue);
/*    position: absolute;*/
    color: var(--light-blue);
    border-top-color: var(--light-blue);
}
.login-wrap {
	margin:auto;
    width: 280px;
}
.login-wrap form input{
    width: 100%;
    margin-bottom: 15px;
}
.login-wrap .btn01{
    width: 100%;
    margin: 15px 0 0 0;
    background-color: var(--point-blue);
}
#autoDiv {
	height:40px;
	display: flex;
	align-items: center;
}
#autoDiv input {
	width:20px;
	height:20px;
	margin-right: 10px;
}
#autoDiv label {
	height:20px;
	line-height: 22px;
}

.btn01 {
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    color: var(--white);
    background: var(--bluegreen);
    border: solid 1px transparent;
    margin: 0 0.5rem;
    outline: none;
}

.btn01:hover {
    background: var(--pinky-red);
    box-shadow: 0 2px 4px 0 var(--black-20), inset 0 0 10px 0 var(--white-80);
    border: solid 1px var(--pinky-red);
}

/*메인*/
header {
    display: flex;
    height: 90px;
    padding: 1.2rem 1rem 0 1rem;
    justify-content: center;
    align-items: center;
}

header.main {
    background: var(--default-blue);
    justify-content: space-between;
    align-items: center;
}

header .btn01 {
    width: 100px;
    height: 2.8rem;
    padding: 0.86rem;
    font-size: 1rem;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--default-blue);
    box-shadow: 0 2px 4px 0 var(--black-20), inset 0 0 10px 0 var(--white-80);
    border: solid 1px var(--white-60);
}

header .btn01:hover {
    background-color: var(--point-blue);
    box-shadow: 0 2px 4px 0 var(--black-20), inset 0 0 10px 0 var(--white-60);
    border: solid 1px var(--white-60);
}

header h1{
    display: flex;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    min-width: 30%;
}

header h1 span {
    font-size: 1rem;
    color: var(--lilac);
    margin-right: 0.6rem;
}



.content{
    height: calc(100% - 150px);
    padding: 1.8rem 2rem 1rem 2rem;
}
.minfoWrap {
    height: 60px;
    padding: 10px 60px;
}

.minfoWrap p {
    color: var(--ice-grey);
    font-size: 1.2rem;
    text-align: center;
}

.lesson {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    border-radius: 2rem;
    padding: 1rem;
    background: var(--black-10);
}
.lesson .mainmenu{
    background: none;
    display: flex;
    flex: 1;
}
.lesson .img:hover {
    border: 3px solid var(--pink) ;
    outline:none;
}
.mainmenu .img {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    margin: 0.6rem;
    border: 3px solid transparent;
}
.mainmenu .img.img1{
    background: var(--default-green) url(../image/menu_img1.svg) no-repeat 30px center;
    background-size: contain;
}
.mainmenu .img.img2{
    background: var(--olive) url(../image/menu_img2.svg) no-repeat center center;
}
.mainmenu .img.img3{
    background: var(--yellow)  url(../image/menu_img3.svg) no-repeat center 35px;
}
.mainmenu .img.img4{
    background: var(--default-blue) url(../image/menu_img4.svg) no-repeat center center;
}
.mainmenu p{
    margin-top: 30px;
    width:230px;
    text-align: left;
    line-height: 2.4;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-left: 12px;
}

.mainmenu p span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
}
#signDiv {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size:15px;
	margin-top:20px;
}
@media only screen and (max-height:680px) {
	.login-bg > div {
		transform:scale(0.85);
		transform-origin: top;
	}
}
@media only screen and (min-height:681px) and (max-height:767px) {
	.login-bg > div {
		transform:scale(0.9);
		transform-origin: top;
	}
}