/* auto — 로그인 페이지 스타일
   sogero 브랜드 팔레트 미러링 (teal #2ca89a, 배경 #F0F2F5) */

*, *::before, *::after { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
    background: #F0F2F5;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.wrap {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    overflow: hidden;
}

.card {
    background: #F0F2F5;
    border-radius: 14px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 380px;
}

.fg { margin-bottom: 10px; }
.fg input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #e0e3ee;
    border-radius: 9px;
    font-size: 14px;
    padding: 0 14px;
    color: #2c2f45;
    background: #fdfdfd;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.fg input:focus {
    border-color: #2ca89a;
    box-shadow: 0 0 0 3px rgba(44, 168, 154, 0.12);
}

.btn-login {
    width: 100%;
    height: 46px;
    border-radius: 9px;
    border: none;
    background: #2ca89a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    transition: background .15s;
}
.btn-login:hover  { background: #24928a; }
.btn-login:active { background: #1e7e77; }

.row-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 12.5px;
    color: #7a7f96;
    gap: 8px;
    flex-wrap: wrap;
}
.chk-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}
.chk-label input {
    width: 14px;
    height: 14px;
    accent-color: #2ca89a;
    margin: 0;
    cursor: pointer;
}
.row-links a { color: #7a7f96; text-decoration: none; }
.row-links a:hover { color: #2ca89a; }

.err-msg {
    font-size: 12px;
    color: #e05252;
    text-align: center;
    margin-bottom: 8px;
    min-height: 16px;
}

@media (max-width: 767px) and (max-height: 750px) {
    .card   { padding: 20px 24px 16px; }
}
