/* 언어설정 */
@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');

/* 전체 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* 색상 설정 */
:root {
    --main-navi: #204B62;
}

/* 로그인 페이지 레이아웃 */
.login-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    padding: 30px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 220px;
}

.login-desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 2px solid #1d4b5a;
    border-radius: 10px;
    font-size: 16px;
}

.login-btn {
    width: 100%;
    background-color: #1d4b5a;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
}

.login-links {
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    margin-top: 15px;
    color: #666;
}


.footer {
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
}

