/*==== index 

    1. 기본 스타일 정의
    2. 커스텀 영역

====*/


/*==    1. 기본 스타일 정의    ==*/

body, div, p { font-family: "segoe ui","malgun gothic", sans-serif;}

html, body {  width: 100%;  height: 100%;  margin: 0px;  padding: 0px;}

            
/*==    2. 커스텀      ==*/

.content { 
    display: table;
    height: 100%;
    width: 100%;
}
.error {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 100%;
    width: 100%;
}
.box {
    width: 416px;
    height: 500px;
    margin: auto;
}
.box p{
    font-size: 18px;
}
img{
    width: 416px;
    height: 304px;
    margin: 0px 0px;
}
button{
    width:270px;
    height: 54px;
    background-color: #1269fa;
    color: #fff;
    font-size: 18px;
    border:0;
    border-radius: 30px;
    cursor:pointer;
}
button:hover{
    background-color: #1359ce;
    color: #fff;
    font-size: 18px;
    border:0;
    border-radius: 30px;
    cursor:pointer;
}