@font-face {
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/NanumGothic.ttf') format('truetype');
}

html, body {
  font-family: 'Nanum Gothic', sans-serif;
}

body.login-page {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background:
        radial-gradient(circle at 80% 20%, rgba(65,169,230,0.18), transparent 55%),
        linear-gradient(135deg, #eef2f7 0%, #dfe7f5 55%, #eef2f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    max-width: 980px;
    padding-inline: 16px;
    display: flex;
    justify-content: center;
}

.login-box {
    width: 380px;
    padding: 38px 36px 42px;
    background: #ffffff;
    border: 1px solid rgba(228,233,242,.9);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
    border-radius: 0;
    text-align: center;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: linear-gradient(135deg, #4fc6e1, #41a9e6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.logo-icon i {
    font-size: 1.1rem;
}
.logo-text {
    font-weight: 700;
    letter-spacing: -.02em;
    font-size: 1.05rem;
    color: #2f3b52;
}

.login-logo {
    margin-bottom: 26px;
}

.login-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 26px;
    color: #2f3b52;
}

.login-box .form-control {
    width: 100%;
    padding: 13px 14px 13px 42px;
    border: 1px solid rgba(203,213,225,.9);
    border-radius: 0; /* 각진 */
    font-size: 0.9rem;
    background: #fafbff;
    color: #2f3b52;
    box-shadow: none;
}
.login-box .form-control::placeholder {
    color: #c0cad8;
}
.login-box .form-control:focus {
    border-color: #41a9e6;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(65,169,230,0.25);
    outline: none;
}

.input-icon {
    position: relative;
}
.input-icon i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #7b8794;
}

.btn-login {
    width: 100%;
    margin-top: 8px;
    padding: 13px 0;
    background: #41a9e6;       
    border: none;
    border-radius: 0;          
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
    box-shadow: 0 12px 26px rgba(65,169,230,.35);
}
.btn-login:hover {
    background: #2780c4;       /* primary-strong */
}

.login-links {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #9fb3c8;
}
.login-links a {
    color: #7b8794;
    text-decoration: none;
}
.login-links a:hover {
    color: #41a9e6;
}

@media (max-width: 576px) {
    .login-box {
        width: 100%;
        max-width: 380px;
        padding: 30px 22px 34px;
        box-shadow: 0 10px 24px rgba(15,23,42,0.06);
    }
}
