/* ✅ 공통 영역 (register1과 동일) */
.register-page {
    background: #fff;
    min-height: calc(100vh - 150px - 530px); /* 헤더+푸터 높이 고려 */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}

.register-container {
    background: #fff;
    border-radius: 12px;
    padding: 0px 50px;
    width: 100%;
    max-width: 600px;
}

.register-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

/* ✅ 단계 표시 */
.register-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 14px;
    color: #888;
}
.step.active {
    color: #4a90e2;
    font-weight: 700;
}

/* ✅ 폼 기본 구조 */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    border-color: #4a90e2;
}

/* ✅ 아이디 + 버튼 */
.input-with-btn {
    display: flex;
    gap: 8px;
}

.input-with-btn input {
    flex: 1;
}

.input-with-btn button {
    white-space: nowrap;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.input-with-btn button:hover {
    background-color: #3a78c2;
}

/* ✅ 안내문 */
.hint {
    font-size: 12.5px;
    color: #777;
    line-height: 1.5;
    margin-top: 4px;
}

/* ✅ 비밀번호 일치 메시지 */
#pwCheckMsg {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* ✅ 다음 버튼 */
.next-btn {
    margin-top: 25px;
    width: 100%;
    padding: 12px 0;
    border: none;
    background-color: #4a90e2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.next-btn:hover {
    background-color: #3a78c2;
}

/* ✅ 반응형 */
@media screen and (max-width: 480px) {
    .register-container {
        padding: 0px 20px;
    }

    .input-with-btn {
        flex-direction: column;
    }

    .input-with-btn button {
        width: 100%;
    }

    .next-btn {
        font-size: 15px;
        padding: 10px 0;
    }
}

/* ✅ 가입 완료 화면 */
.register-complete {
    text-align: center;
    padding: 40px 20px;
    color: #333;
}

.register-complete .check-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.register-complete h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.register-complete p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.complete-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.complete-buttons button {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.complete-buttons button:hover {
    background-color: #3a78c2;
}

@media screen and (max-width: 480px) {
    .complete-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .complete-buttons button {
        width: 100%;
    }
}
