@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
    border: none;
}
body{
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    min-height: 800px;
}

#popup{
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    min-height: 0px !important;
}
.popup h1{
	padding-top: 45px;
}

.wrapper{
	display: flex;
	justify-content: center;
  	align-items: center;
  	flex-direction: column;
  	height: 800px;
}
.popup{
	display: flex;
	justify-content: center;
  	align-items: center;
  	flex-direction: column;
  	height: 400px !important;
}
.login-wrapper{
	width: 400px;
	height: 350px;
	padding: 40px;
	box-sizing: border-box;
	border: 3px solid #6A24FE;
    border-radius: 33px;
}
.wrapper > h1{
	font-size: 36px;
    color: #6A24FE;
    margin-bottom: 20px;
}
.login-wrapper > h2{
    font-size: 24px;
    color: #6A24FE;
    margin-bottom: 20px;
}
#login-form > input,
#join-form > input,
#passCheckForm > input,
#edit-form > input{
    width: 100%;
    height: 48px;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 11px;
    border-radius: 6px;
    background-color: #F8F8F8;
}

#userDel{
	width: 100%;
    height: 48px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: #F8F8F8;
    position: relative;
    top : -10px;
}

#login-form > input::placeholder,
#join-form > input::placeholder,
#passCheckForm > input::placeholder,
#edit-form > input::placeholder{
    color: #D2D2D2;
}
#login-form > input[type="submit"],
#join-form > input[type="submit"],
#passCheckForm > input[type="submit"],
#edit-form > input[type="submit"],
#userDel{
    color: #fff;
    font-size: 16px;
    background-color: #6A24FE;
    margin-top: 20px;
}

#login-form > input[type="checkbox"],
#join-form > input[type="checkbox"],
#edit-form > input[type="checkbox"]{
    display: none;
}
#login-form > label,
#join-form > label,
#edit-form > label{
    color: #999999;
}
#login-form input[type="checkbox"] + label,
#join-form input[type="checkbox"] + label,
#edit-form input[type="checkbox"] + label{
    cursor: pointer;
    padding-left: 26px;
    background-image: url("checkbox.png");
    background-repeat: no-repeat;
    background-size: contain;
}
#login-form input[type="checkbox"]:checked + label,
#join-form input[type="checkbox"]:checked + label,
#edit-form input[type="checkbox"]:checked + label{
    background-image: url("checkbox-active.png");
    background-repeat: no-repeat;
    background-size: contain;
}

#login-form .pointer:hover,
#login-form input[type="checkbox"]:hover,
#join-form .pointer:hover,
#join-form input[type="checkbox"]:hover,
#join-form > input[type="submit"]:hover,
#edit-form .pointer:hover,
#edit-form input[type="checkbox"]:hover,
.pointer{
	cursor: pointer;
}

.login-wrapper .join-wrapper{
	float: right;
    right: 5px;
    position: relative;
    font-size: 16px;
}

.login-wrapper .join-wrapper a{
	color: #6A24FE;
}
.login-wrapper .join-wrapper a:hover{
	color: #DC143C;
}

.confirm_id{
	padding: 14px;
    border-radius: 10px;
    width: 100px;
    color: #fff;
    background-color: #00008B;
    margin-left: 8px;
}

