
.small-title {
    font-size: 20px;
    color: #333;
}

.main-title {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.2;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #222;
    margin-left: 8px;
    margin-bottom: 4px;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100px;
    height: 24px;
    padding: 2px 4px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;           /* 기본 체크박스 제거 */
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #000;     /* 외곽선 */
    border-radius: 4px;         /* 모서리 둥글게 */
    background-color: #fff;     /* 기본 배경 */
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button {
    width: 100%;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 24px;
    cursor: pointer;
}



.submit-btn:hover {
    background-color: #111;
    cursor: pointer;
}

.footer-text {
    margin-top: 40px;
    font-size: 11px;
    color: #999;
}


.login-container {
    width: 100vw;
    height: 100vh;        /* 전체 높이 */
    margin: 0 auto;       /* 중앙 정렬 */
    display: flex;
}
/* 왼쪽 영역 */
.login-left {
    flex: 1; /* 남는 공간 전부 차지 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.login-inner {
    width: 448px;
}

.login-right {
    display: flex;
}

/* 오른쪽 배경 */
.login-right img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 잘림 없이 */
    object-position: center;
}

.login-left img {
    margin-top:18px;
    width: 220px;
    height: auto;
    margin-bottom: 88px;
}


.field-error {
    color: #ff0502;
    font-size: 20px;
}