﻿@charset "utf-8";

/* CSS Document */

/* ------------------------------------------------------------
 * Name      : style.css
 * Desc      : Portal error page
 * Created   : 2025/03/18 by YJKIM
 * Updated   : 
------------------------------------------------------------ */

.html{
    width:100%;
    margin:0;
    padding:0;
}


/* error_wrap */
.error_wrap{
    width:100%;
    justify-content: center;
    text-align: center;
    margin-top:150px;
}

.container{
    display:flex;
}

.error_image{
    width:100%;
}

.error_text{
    width:100%
}

.error_text h2{
    font-size:32px;
    font-weight: 700;
    color:#0051AE;
}

.error_text p{
    font-size: 20px;
    font-weight:400;
    color:#000;
    line-height:100%;
}

.btn{
    width:220px;
    height:56px;
    color:#fff;
    background-color: #0051AE;
    border-radius: 100px;
    font-size:18px;
    font-weight: 400;
    display: block;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center;
    border:none;
    cursor:pointer;
    margin-top:48px;
}

.btn:hover{
    background-color: #003D84;
}

/* footer */

.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    height:110px;    
    min-height: 110px; /* 최소 높이 설정 */
    margin:0;
    padding:0;
    display: block;
    align-items: center;
    border-top: 1px solid #ddd;
}

.footer_area{
    text-align: center;
    font-size:14px;
    color:#999;
    line-height:100%;
    padding: 32px 0;
}
