@charset "utf-8";

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'NanumSquare';
    src: url('../fonts/NanumSquareR.woff2') format('woff2'),
         url('../fonts/NanumSquareR.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansLight.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/* 적용 */
body {
    font-family: 'Pretendard', 'NotoSansKR', 'NanumSquare', sans-serif;
    font-size: 16px;
}

caption {width: 0; height: 0; font-size: 0; line-height: 0; overflow: hidden; visibility: hidden; line-height: 0; display: none;}
.blind, .hidden {visibility: hidden; position: absolute; left: -99999em; width: 1px; height: 1px; text-indent: -9999em; font-size: 0; top: -9999em; overflow: hidden;}

a {color: #444;}
a:link, a:visited {color: inherit; text-decoration: none;}
a:hover, a p:hover {color: #46a0e6;}

body {
    background-color: #17294a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    width: 300px;
    background: #113639;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.container h2 {
    font-size: 24px;
    color: #ffffff;
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.login-logo {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 16px; /* ← 모서리를 둥글게 처리 */
}

.login-title {
    font-size: 22px;
    margin: 0;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 5px;
    background: #f1f1f1;
}
.input-group input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    padding: 8px;
}
/* .error-message {
    font-size: 12px;
    text-align: left;
    margin-bottom: 10px;
} */
.result-message, .error-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.result-message {
    background-color: #e6f7ff; /* 연한 파란색 */
    color: #0056b3; /* 진한 파란색 */
    border: 1px solid #0056b3;
}

.error-message {
    background-color: #ffebeb; /* 연한 빨간색 */
    color: #d32f2f; /* 진한 빨간색 */
    border: 1px solid #d32f2f;
}
.checkbox-group {
    text-align: left;
    margin-bottom: 10px;
}
.login-button {
    background: #315a2c;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.find-links {
    margin-top: 15px;
    font-size: 14px;
}

.find-links a {
    color: #9db3d8;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.find-links a:hover {
    text-decoration: underline;
    color: #9db3d8;
}
