/* ===== Reset & Base ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f7fa;
    color: #1f2d3d;
    font-family: 'Pretendard',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Noto Sans KR',
    'Apple SD Gothic Neo',
    'Malgun Gothic',
    sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ===== Layout ===== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 420px;
    padding: 44px 38px;

    background: #ffffff;
    border: 1px solid #d9dee3;
    border-radius: 10px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* ===== Logo ===== */
.login-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;

    background-image: url("../images/logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    border-radius: 50%;
}

/* ===== Text ===== */
.login-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.login-desc {
    margin: 10px 0 28px;
    font-size: 13px;
    color: #6b7785;
}

/* ===== Inputs ===== */
.login-input {
    width: 100%;
    height: 40px;
    margin-bottom: 12px;
    padding: 0 12px;

    border: 1px solid #cfd6dd;
    border-radius: 4px;
    font-size: 14px;
}

.login-input:focus {
    outline: none;
    border-color: #2f7bbd;
}

/* ===== Error ===== */
.login-error {
    margin: -8px 6px 13px;
    color: #d93025;
    font-size: 12px;
    text-align: left;
}

/* ===== Remember ===== */
.login-options {
    display: flex;
    align-items: center;

    margin: 6px 0 10px;   /* 버튼과 10px 간격 */
    font-size: 15px;
    color: #555;

    justify-content: flex-start; /* 좌측 정렬 */
}

/* ===== Button ===== */
.login-btn {
    margin-top: 8px;

    width: 100%;
    height: 42px;

    background: #2f7bbd;
    color: #ffffff;

    border: none;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.login-btn:hover {
    background: #2568a3;
}

/* ===== Links ===== */
.login-links {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
}

.login-links button {
    flex: 1;
    margin: 0 4px;
    padding: 8px 0;

    background: #ffffff;
    border: 1px solid #d9dee3;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 500;
    color: #1f2d3d;
    cursor: pointer;
}

.login-links button:hover {
    background: #f0f4f8;
}
